使用ES6和gulp

时间:2017-07-16 14:35:41

标签: javascript angularjs ecmascript-6 gulp

我正在使用gulp,我已经为我的angular js webapp项目编写了一个构建任务。但是gulp不理解我在我的脚本中使用的箭头函数,所以它给了我这样的错误:
    getIdentifier
那么可能的解决方案是什么?我也试过了Babel!

1 个答案:

答案 0 :(得分:0)

目前在我的构建中使用ES6箭头功能没有问题。确保您至少拥有CLI和本地版本gulp的3.9版本。要检查您的版本,请打开终端并输入:gulp -v。 enter image description here

gulp.task('styles-production', () => {
  return gulp.src('.tmp/styles/main.css')
    .pipe($.cssnano())
    .pipe(gulp.dest('./dist/styles'));
})

enter image description here