使用 Node 4.3.2 时,我在 Travis-ci 中收到以下错误:
SyntaxError in plugin 'gulp-mocha' Unexpected token =
使用 Node 6 时一切正常,但不是 4.3.2。这是堆栈跟踪:
[12:05:11] Starting 'build'...
[12:05:11] Finished 'build' after 13 μs
[12:05:11] Starting 'tests'...
SyntaxError in plugin 'gulp-mocha'
Message:
Unexpected token =
Stack:
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)
这是我正在运行的任务:
gulp.task('tests', ['build'], (cb) => {
if (hasError) {
cb();
return;
}
return gulp.src('build/test/**/*.js', {read: false})
.pipe(mocha())
.on("error", handleError);
});
我该如何纠正?
正在使用旧版本的 Node,因为这是一个 AWS Lambda 应用程序。