browserify 1020 repro 对Browserify错误#1020的重现
Browserify 7 Bug #1020 Repro 此存储库包含Browserify 7的错误的重现以及它过去如何在Browserify 4中工作的示例。漏洞Browserify 7 不支持引用外部文件,例如hello.js
,作为--require以及入口文件内部。Browserify 7的bundle.js
有一个undefined hello.js
引用,见下文:
在Browserify 7中不起作用,如果hello.js
也在main.js
中被引用:
browserify --require ../hello.js:hello ../main.js > bundle.js
设置:
-
npm run setup
-
npm run build
打开:
-
4.x/index.html
-
7.x/index.html
用户评论