3

我的印象是,在 grunt.registerTask(taskName, taskList) 中,taskList 将按顺序运行(即一个完成,然后再进入下一个)。我想不是这样吧?

鉴于此任务:

grunt.registerTask('local-debug', [
    'clean',
    'concat:local',
    'ngconstant:common',
    'targethtml:local',
    'copy:debug'
]);

在运行副本之前,如何确保 concat/ngconstant/targethtml 完整?我遇到了问题,因为 ngconstant 在 concat 完成之前正在运行。

编辑:任务未按顺序运行的详细信息。

'concat:local' 创建一个被 'ngconstant:common' 使用的 aggregate.json 文件。如果我删除现有的 aggregate.json 文件,则 ngconstant:common 任务会出错,因为 aggregate.json 文件丢失(但文件确实在 ngconstant 运行后创建)。另外,如果我不删除文件,而只是进行更改,例如更改 concat 使用的源文件中的版本号,则 ngconstant 创建的文件不会接受更改,因为它不会等到新的聚合。 json 是由 concat 创建的。

编辑2:任务代码

concat: {
        options: {
            banner: '{"appConfig": {',
            footer: "}}",
            separator: ','
        },
        local: {
            src: ["app/config/common-config.json", "app/config/local.json"],
            dest: "app/config/aggregate-config.json"
        }
    },
ngconstant: {
        options: {
            space: '  ',
            wrap: '(function(){\n\n"use strict";\n\n {%= __ngModule %}\n\n}());',
            name: 'CoreConfig',
            dest: 'app/scripts/config.js'
        },
        common: {
            constants: grunt.file.readJSON('app/config/aggregate-config.json')
        }
}
4

1 回答 1

2

好的,我知道了。

Grunt 按照以下步骤工作:

  1. 读取其整个 Gruntfile 并评估配置
  2. 然后它构建要运行的任务列表
  3. 然后它遍历列表,按顺序运行任务

所以会发生什么,您在 1. 期间,您的文件aggregate-config.json被读取并设置config.ngconstant.common.constants为其当前值(您之前运行的结果)。然后 3. 发生,并aggregate-config.json生成一个新的,但未使用(在任务之间不会重新读取配置)。

但是,如果您将字符串传递给ngconstant.constants,它将被解释为文件名并在任务运行时读取(步骤 3),从而为您提供所需的结果:

ngconstant: {
  common: {
    constants: 'app/config/aggregate-config.json'
  }
}
于 2015-09-18T17:38:59.933 回答