如何处理'代码生成器已经消除了来自gulp-babel的样式'消息 [英] How to handle 'code generator has deoptimised styling' message from gulp-babel

查看:544
本文介绍了如何处理'代码生成器已经消除了来自gulp-babel的样式'消息的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我刚刚用以下的

I've just employed gulp-babel to my gulp file with the following

var babel = require('gulp-babel');

return gulp.src(files.concat.js.myModule)
  .pipe(babel())
  .pipe(concat('myModule.js'))
  .pipe(gulp.dest('path/to/js'));

...我得到以下注意关于在我的咕嘟声输出中优化样式:

...and I get the following Note about deoptimising the styling in my gulp output:

NOTE: The code generator has deoptimised the styling ... as it exceeds the max of "100KB"

这是个问题吗?

我应该如何处理这是什么方法?

Is this a problem?
Should I be handling this is some way?

推荐答案

原来设置 compact 选项默认为 auto ,这将删除输入大小> 100KB中多余的空格字符和行结束符[...]。

Turns out the compact option is set to auto by default which removes "superfluous whitespace characters and line terminators [...] on input sizes >100KB".

如果这不是您想要的,您可以设置 compact 选项为false ...

If this is not what you want, you can set the compact option to false...

.pipe(babel({compact: false}))

这篇关于如何处理'代码生成器已经消除了来自gulp-babel的样式'消息的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆