'gulp-babel' 在节点 js 版本 4 中不工作
'gulp-babel' not working in node js version 4
当在我的 gulp 文件中要求 gulp-babel
时,在我的 js 文件中使用 es6
语法时出现错误。
/home/logakrishnan/Documents/project/node_modules/@babel/core/lib/transformation/file/file.js:77
constructor(options, {
^
SyntaxError: Unexpected token {
at exports.runInThisContext (vm.js:53:16)
at Module._compile (module.js:373:25)
at Object.Module._extensions..js (module.js:416:10)
at Module.load (module.js:343:32)
at Function.Module._load (module.js:300:12)
at Module.require (module.js:353:17)
at require (internal/module.js:12:17)
at Object.<anonymous> (/home/logakrishnan/Documents/project/node_modules/@babel/core/lib/index.js:153:36)
at Module._compile (module.js:409:26)
at Object.Module._extensions..js (module.js:416:10)
节点版本:v4.4.7
您必须升级 Node.js 版本。 (节点 4 来自 2016 年,JavaScript 术语中的相对永恒。)
当在我的 gulp 文件中要求 gulp-babel
时,在我的 js 文件中使用 es6
语法时出现错误。
/home/logakrishnan/Documents/project/node_modules/@babel/core/lib/transformation/file/file.js:77
constructor(options, {
^
SyntaxError: Unexpected token {
at exports.runInThisContext (vm.js:53:16)
at Module._compile (module.js:373:25)
at Object.Module._extensions..js (module.js:416:10)
at Module.load (module.js:343:32)
at Function.Module._load (module.js:300:12)
at Module.require (module.js:353:17)
at require (internal/module.js:12:17)
at Object.<anonymous> (/home/logakrishnan/Documents/project/node_modules/@babel/core/lib/index.js:153:36)
at Module._compile (module.js:409:26)
at Object.Module._extensions..js (module.js:416:10)
节点版本:v4.4.7
您必须升级 Node.js 版本。 (节点 4 来自 2016 年,JavaScript 术语中的相对永恒。)