6

使用 Gulp 4 和使用 gulp-hub 将我的任务拆分为多个文件的配方会在尝试加载任务文件时引发此错误。任务文件非常简单,只是想测试一切是否正常。

我在 Github 上的 Undertaker 上找到了这个关于get函数的参考,但我真的不明白他们想说什么,而且似乎 gulp-hub 应该在做这个提升。

还有其他人遇到这个并知道如何解决吗?

吞咽文件

'use strict';

var gulp = require('gulp');

var HubRegistry = require('gulp-hub');

// Load some files into the registry
var hub = new HubRegistry(['gulp/tasks/*.js']); // only one file help.js

// Tell gulp to use the tasks just loaded
gulp.registry(hub);

帮助任务 - /gulp/tasks/help.js

'use strict';

var gulp = require('gulp');

gulp.task('help', []);

抛出错误

$ gulp help
[01:36:37] Loading gulp\tasks\help.js

D:\projects\app\node_modules\undertaker\lib\helpers\validateRegistry.js:36
      throw err;
      ^
 AssertionError: Custom registry must have `get` function
    at validateRegistry (D:\projects\app\node_modules\undertaker\lib\helpers\validateRegistry.js:28:5)
    at Gulp.registry (D:\projects\app\node_modules\undertaker\lib\registry.js:17:3)
    at Object.<anonymous> (D:\projects\app\gulpfile.js:11:6)
    at Module._compile (module.js:541:32)
    at Object.Module._extensions..js (module.js:550:10)
    at Module.load (module.js:458:32)
    at tryModuleLoad (module.js:417:12)
    at Function.Module._load (module.js:409:3)
    at Module.require (module.js:468:17)
    at require (internal/module.js:20:19)
4

3 回答 3

11

您可能正在运行gulp-hub@0.8.0当前发布到npm并为 gulp 3.x 设计的版本。

对于 gulp 4.x,您需要从GitHub 上gulp-hub的开发分支之一进行安装。目前有和。4.0registry-init

4.0分支现在无法工作,因为它未能通过undertaker.

然而,该registry-init分支似乎工作。你可以像这样安装它:

npm uninstall gulp-hub
npm install --save-dev frankwallis/gulp-hub#registry-init
于 2016-07-22T11:00:53.237 回答
1

2016 年 10 月 12 日更新

我与 yeoman-fountainjs 一起工作,并且在他们的 package.json 中定义了以下开发依赖项,这就像一个魅力:

"gulp": "gulpjs/gulp#4ed9a4a3275559c73a396eff7e1fde3824951ebb",
"gulp-hub": "frankwallis/gulp-hub#d461b9c700df9010d0a8694e4af1fb96d9f38bf4",
于 2016-10-12T10:42:19.637 回答
1

我遇到了同样的错误,但这是因为我未能将任务正确地暴露给 Gulp。

起初我在我的help.js文件中使用这样的 CommonJS 并得到同样的错误: exports.help = help;

所以我把它改成了一个 Gulp 任务,它起作用了: gulp.task("help", help);

于 2018-07-16T17:58:37.560 回答