tscoverage/ts/npmts.typings.ts
2016-01-31 22:24:57 +01:00

12 lines
371 B
TypeScript

/// <reference path="./index.ts" />
module NpmtsTypings {
export var run = function(){
var done = plugins.q.defer();
plugins.beautylog.log("now installing typings");
plugins.typings.install({production: false, cwd: paths.tsDir})
.then(function(){
done.resolve();
});
return done.promise;
}
}