标签: javascript teamcity-9.0
在使用Teamcity 9.1.7构建应用程序时,我们遇到错误 -
const os = require('os'); ^^^^^
加载“Gruntfile.js”任务......错误
SyntaxError:在严格模式下使用const。
任何帮助都非常适合
答案 0 :(得分:0)
将'use strict';添加到文件顶部。或者更好地更新你的node.js
'use strict';
'use strict'; const os = require('os'); // rest of the file
对于您的节点版本(6.11.3,正如您在评论中提到的那样),一切都应该可以正常工作。我刚检查过