我刚刚安装了最新的Gulp 4(本地版本4.0.0-alpha.3)。我有最基本的gulpfile.js,其中包含:
// Gulp 4
gulp.task('cleanTemp', function () {
log('Hello world!');
});
当我执行代码时
node --inspect-brk C:\Users\jdalecki\AppData\Roaming\npm\gulp.cmd cleanTemp
以调试模式运行它,当我进入Chrome并在“ chrome:// inspect /#devices”页面中按“检查”后,我总是得到:
侦听ws://127.0.0.1:9229 / 391dc461-3229-49a0-a400-c5374386b89f的调试器 如需帮助,请参见https://nodejs.org/en/docs/inspector 附带调试器。 C:\ Users \ jdalecki \ AppData \ Roaming \ npm \ gulp.cmd:1 (函数(导出,需求,模块,__ filename,__ dirname){{如果存在,则“%〜dp0 \ node.exe”( ^ 语法错误:无效或意外的令牌 在createScript(vm.js:80:10) 在Object.runInThisContext(vm.js:139:10) 在Module._compile(module.js:616:28) 在Object.Module._extensions..js(module.js:663:10) 在Module.load(module.js:565:32) 在tryModuleLoad(module.js:505:12) 在Function.Module._load(module.js:497:3) 在Function.Module.runMain(module.js:693:10) 在启动时(bootstrap_node.js:191:16) 在bootstrap_node.js:612:3 等待调试器断开连接...
我在做什么错了?
亲切的问候, 贾努斯