tscoverage/ts/npmts.typings.ts

12 lines
371 B
TypeScript
Raw Normal View History

2016-01-31 21:24:57 +00:00
/// <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;
}
}