gpt4 book ai didi

node.js - Vueify 无法与 ES2015 配合使用 - Gulp

转载 作者:太空宇宙 更新时间:2023-11-04 00:39:02 25 4
gpt4 key购买 nike

我一直在尝试让 browserify/vueify 使用 Gulp 输出 ES2015。我做了什么the documentation说的是:

npm install\ babel-core\ babel-preset-es2015\ babel-runtime\ babel-plugin-transform-runtime\ --save-dev

我的 gulpfile 中有这个:

gulp.task('browserify', function() {
browserify('./js/entry.js')
.transform(vueify)
.bundle()
.pipe(fs.createWriteStream('./js/bundle.js'))
});

文档指出:

Support ES2015 by default.

我是否应该要求或导入我的 gulpfile 中的所有 npm 模块或其他内容?我在这里缺少什么? Browserify 工作正常,但是一旦我使用 ES2015,就会出现 gulp 错误:

SyntaxError: Unexpected token (32:6) while parsing...

最佳答案

Vueify 支持 Vue 文件内的 es2015,但如果您在 entry.js 中使用它,则还需要在启用 es2015 的情况下通过 browserify 进行管道传输。 Browserify 处理 .js 文件,它也需要了解 es2015 :)

关于node.js - Vueify 无法与 ES2015 配合使用 - Gulp,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37680244/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com