gpt4 book ai didi

javascript - Grunt 任务依赖

转载 作者:行者123 更新时间:2023-11-30 12:59:53 24 4
gpt4 key购买 nike

我有一个通过 npm taskA(不是实际名称)安装的 grunt 任务

taskA 有一个依赖项:grunt-contrib-stylus,它在 taskA 的 package.json 中指定并安装。出于某种原因,当从主 Gruntfile.js 运行 grunt default 时出现错误。


警告:找不到任务“stylus”。使用 --force 继续。

修复方法是在主项目中需要 grunt-contrib-stylus。我想避免这种情况。我的任务没有在其 node_modules/中使用 grunt-contrib-stylus 的原因是什么?

任务A

module.exports = function(grunt) {
'use strict';

grunt.loadNpmTasks('grunt-contrib-stylus');
...

主 Gruntfile.js

...
grunt.loadNpmTasks('taskA');
...

最佳答案

grunt.loadNpmTasks 加载 [cwd]/node_modules/[modulename]/tasks/。您可以通过更改 cwd 将任务加载为依赖项:

任务A

module.exports = function(grunt) {
var parentcwd = process.cwd();
process.chdir(__dirname);

grunt.loadNpmTasks('grunt-contrib-stylus');

process.chdir(parentcwd);
};

只需确保在最后将 cwd 设置回父级即可。

关于javascript - Grunt 任务依赖,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17588466/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com