1
我正在使用Browserify API編寫一個小腳本,並遵循自述文件here。Browserify api:如何將高級選項傳遞給腳本
除了當我需要通過advanced options下列出的標誌時,所有的工作都可以正常工作,對於這些標誌似乎沒有API覆蓋。我想通過的是--node
標誌。
var b = browserify({
entries: ['src/index.js'],
cache: {},
ignoreWatch: ['**/node_modules/**', './dist/'],
packageCache: {},
plugin: [watchify, babelify],
debug: true,
node: true // => this options does not actually exist, so it does nothing
});
b.on('update', bundle);
function bundle() {
b.bundle()
.pipe(fs.createWriteStream('bundle.js'));
}
在命令行下將其轉化爲watchify src/index.js --node -o bundle.js
(和它的作品)。
我認爲,在文檔,上面寫着一行:
所有其他選項一起被轉發到直接模塊DEPS和瀏覽器的包。
可能包含一些幫助,但它不清楚如何。任何關於這個的指針?