我有几个繁重的任务,我试图在这些任务之间共享全局变量,但我遇到了问题。
我编写了一些自定义任务,根据构建类型设置正确的输出路径。这似乎是正确设置的东西。
// Set Mode (local or build)
grunt.registerTask("setBuildType", "Set the build type. Either build or local", function (val) {
// grunt.log.writeln(val + " :setBuildType val");
global.buildType = val;
});
// SetOutput location
grunt.registerTask("setOutput", "Set the output folder for the build.", function () {
if (global.buildType === "tfs") {
global.outputPath = MACHINE_PATH;
}
if (global.buildType === "local") {
global.outputPath = LOCAL_PATH;
}
if (global.buildType === "release") {
global.outputPath = RELEASE_PATH;
}
if (grunt.option("target")) {
global.outputPath = grunt.option("target");
}
grunt.log.writeln("Output folder: " + global.outputPath);
});
grunt.registerTask("globalReadout", function () {
grunt.log.writeln(global.outputPath);
});
所以,我试图在后续任务中引用 global.outputPath,并遇到错误。
如果我grunt test
从命令行调用,它输出正确的路径没问题。
但是,如果我有这样的任务: clean: { release: { src: global.outputPath } }
它抛出以下错误:
Warning: Cannot call method 'indexOf' of undefined Use --force to continue.
此外,我在 setOutput 任务中的常量设置在 Gruntfile.js 的顶部
有什么想法吗?我在这里做错了吗?