pass npm run all in new definition-tester

This commit is contained in:
vvakame
2016-02-10 00:16:03 +09:00
parent c6c87d3587
commit 9027703c0b
96 changed files with 681 additions and 799 deletions
-3
View File
@@ -1,11 +1,9 @@
/// <reference path="undertaker.d.ts" />
/// <reference path="../node/node.d.ts" />
/// <reference path="../es6-promise/es6-promise.d.ts" />
var fs = require('fs');
var Undertaker = require('undertaker');
import { Registry } from 'undertaker';
require('es6-promise');
var taker = new Undertaker();
@@ -43,4 +41,3 @@ taker.task('build', taker.series('clean', function build(cb: () => void) {
// do things
cb();
}));