gulp包任务-ReferenceError:未定义原始字符串

时间:2019-11-14 12:03:38

标签: node.js gulp saas gulp-sass sitecore-habitat

团队,

我的Ci管道蔚蓝失败,发现以下错误。 我尝试过How to fix ReferenceError: primordials is not defined in node的解决方案,但没有运气

以下错误:

##[section]Starting: gulp Package-Generate
==============================================================================
Task         : Gulp
Description  : Node.js streaming task based build system
Version      : 0.141.2
Author       : Microsoft Corporation
Help         : [More Information](https://go.microsoft.com/fwlink/?LinkID=613721)
==============================================================================
[command]C:\npm\prefix\gulp.cmd Package-Generate --gulpfile d:\a\1\s\gulpfile.js --configuration release
fs.js:27
const { Math, Object } = primordials;
                         ^

ReferenceError: primordials is not defined
    at fs.js:27:26
    at req_ (d:\a\1\s\node_modules\natives\index.js:143:24)
    at Object.req [as require] (d:\a\1\s\node_modules\natives\index.js:55:10)
    at Object.<anonymous> (d:\a\1\s\node_modules\graceful-fs\fs.js:1:37)
    at Module._compile (internal/modules/cjs/loader.js:956:30)
    at Object.Module._extensions..js (internal/modules/cjs/loader.js:973:10)
    at Module.load (internal/modules/cjs/loader.js:812:32)
    at Function.Module._load (internal/modules/cjs/loader.js:724:14)
    at Module.require (internal/modules/cjs/loader.js:849:19)
    at require (internal/modules/cjs/helpers.js:74:18)
##[error]Gulp failed with error: C:\npm\prefix\gulp.cmd failed with return code: 1
##[section]Finishing: gulp Package-Generate

3 个答案:

答案 0 :(得分:0)

如果您使用的是Microsoft托管代理,则nodejs的版本为automatically updated至最新的LTS。

因此,现在您必须更新构建以使用Gulp4。我发现this blog对迁移很有帮助。

答案 1 :(得分:0)

我通过使用Node.js工具安装程序和目标节点版本10x修复了此问题。使这成为您的首要任务。这样就做到了,所以我不必将gulp升级到4。我正在ubuntu-16.04上构建

build pipeline

答案 2 :(得分:0)

使用Gulp 3.9.1NodeJS 12.14.0时出现此错误。

我已解决了卸载NodeJS 12.14.0和安装NodeJS 10.13.0版本的问题。

然后一切正常。