我在我的项目中添加了一个新的npm包,并在我的一个模块中需要它.
现在我从webpack收到此消息,
build modulesNote: The code generator has deoptimised the styling of "D:/path/to/project/node_modules/ramda/dist/ramda.js" as it exceeds the max of "100KB".
这是什么意思?我需要采取一些行动吗?
我刚刚使用gulp-babel了以下内容来使用我的gulp文件
var babel = require('gulp-babel');
return gulp.src(files.concat.js.myModule)
.pipe(babel())
.pipe(concat('myModule.js'))
.pipe(gulp.dest('path/to/js'));
Run Code Online (Sandbox Code Playgroud)
...我得到以下Note关于在我的gulp输出中取消优化样式的内容:
NOTE: The code generator has deoptimised the styling ... as it exceeds the max of "100KB"
Run Code Online (Sandbox Code Playgroud)
这是一个问题吗?
我应该处理这个问题吗?