now working

This commit is contained in:
2016-01-14 20:06:02 +01:00
parent 71f8d14ee9
commit e1419d85cc
6 changed files with 23 additions and 11 deletions

View File

@@ -9,7 +9,6 @@ var plugins = {
var paths:any = {};
paths.cwd = plugins.smartcli.get.cwd().path;
console.log(paths.cwd);
paths.indexTS = plugins.path.join(paths.cwd,"ts/index.ts");
paths.testTS = plugins.path.join(paths.cwd,"ts/test.ts");
@@ -27,4 +26,10 @@ plugins.gulp.task("indexTS", function(){
out: "test.js"
}))
.pipe(plugins.gulp.dest(paths.cwd))
});
});
plugins.gulp.task("default",[],function(){
plugins.beautylog.success("TypeScript for this module was compiled successfully.");
});
plugins.gulp.start.apply(plugins.gulp, ['default']);