私は2つのディレクトリを持っている:一息-nodemon時計typescriptですファイル
アプリを
es5 javascript files compiled by gulp task
SRC
typescript source files
私は変更に
app/
リスタートからの起動スクリプトを作るnodemonたい
src/
dir。しかし、それは動作しません - アプリケーションは始まったばかりですが、ノーデモンは変更をリロードしません。
これは私のgulpfile
である(彼はsrc/
を見ていないように見える):
var gulp = require("gulp-help")(require("gulp")),
ts = require("gulp-typescript"),
nodemon = require("gulp-nodemon");
/***********************************************************************************
* Build es5 javascript files from typescript sources
***********************************************************************************/
gulp.task("compile", function() {
var project = ts.createProject({
"target": "ES5",
"module": "commonjs",
"moduleResolution": "node",
"sourceMap": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"removeComments": true,
"noImplicitAny": false
});
return gulp.src("./src/**/*.ts")
.pipe(project())
.pipe(gulp.dest("./app/"))
});
/***********************************************************************************
* Call "build" task and start nodemon with watch (autorestart on changes found)
***********************************************************************************/
gulp.task("default", ["compile"], function() {
var stream = nodemon({
script: "app/",
watch: "src",
tasks: ["compile"],
env: { "DEBUG": "Application,Request,Response" }
});
return stream;
});
gulp.watch、imoを使用できます – YOU