我正在尝试bundle.js
使用 watchify 自动构建,但不幸的是,当我保存文件时不会触发更新事件。
var bundler = watchify(browserify({
debug: true,
entries: ['./js/main.js'],
transform: "babelify",
cache: {}, packageCache: {}, fullPaths: true
}))
.on("update", function () {
var updateStart = Date.now();
console.log(updateStart);
return bundler
.bundle()
.pipe(exorcist(path.join(distPath, "bundle.js.map")))
.pipe(fs.createWriteStream(path.join(distPath, "bundle.js")));
})
.bundle()
.pipe(exorcist(path.join(distPath, "bundle.js.map")))
.pipe(fs.createWriteStream(path.join(distPath, "bundle.js")));
当我使用 CLI 时,行为是相似的:构建在启动后运行一次,仅此而已。
watchify ./js/main.js -o js-dist/bundle.js -v
我正在使用 OS X Yosemite。