1

我被困在这里了。我有这类任务的 gruntfile:

grunt.initConfig({

  shell: {
    // stub task; do not really generate anything, just copy to test
    copyJSON: {
      command: 'mkdir .tmp && cp stub.json .tmp/javascripts.json'
    }
  },

  uglify: {
    build: {
      files: {
        'output.min.js': grunt.file.readJSON('.tmp/javascripts.json')
      }
    }
  },

  clean: {
    temp: {
      src: '.tmp'
    }
  }
});

grunt.registerTask('build', [
  'shell:copyJSON',
  'uglify:build',
  'clean:temp'
]);

而且,当然,这是行不通的,因为没有.tmp/javascripts.json文件:

Error: Unable to read ".tmp/javascripts.json" file (Error code: ENOENT). 

我尝试做一些额外的任务,即在生成文件后创建变量,尝试将其存储在globals.javascriptand grunt.option("JSON"),如下所示:

grunt.registerTask('exportJSON', function() {
    if (grunt.file.exists('.tmp/javascripts.json')) {
        grunt.log.ok("JSON with set of javascripts exist");
        grunt.option("JSON", grunt.file.readJSON('.tmp/javascripts.json'));
    }
    else {
        grunt.fail.warn("JSON with set of javascripts does not exist");
    };
});

grunt.initConfig({
    uglify: {
        build: {
            files: {
                'output.min.js': grunt.option("JSON")
            }
        }
    }
});

grunt.registerTask('build', [
    'shell:copyJSON',
    'exportJSON',
    'uglify:build',
    'clean:temp'
]);

并且总是有同样的错误Warning: Cannot call method 'indexOf' of undefined Use --force to continue.

真的不知道如何解决这个问题。有任何想法吗?

4

1 回答 1

1

如果您想填充仅在运行时解析的配置选项,则需要使用模板:

http://gruntjs.com/configuring-tasks#templates

所以简单地说你需要将uglify任务的files配置更改为以下内容:

files: {
    'output.min.js': "<%= grunt.option('JSON') %>"
}

还可以使用以下选项更改uglify任务的配置grunt.config.set

grunt.registerTask('exportJSON', function() {
    if (grunt.file.exists('.tmp/javascripts.json')) {
        grunt.log.ok("JSON with set of javascripts exist");
        files = grunt.file.readJSON('.tmp/javascripts.json');
        grunt.config.set(
            ['uglify', 'build', 'files', 'output.min.js'], files
        );
    } else {
        grunt.fail.warn("JSON with set of javascripts does not exist");
    }
});

在这种情况下,您的uglify任务files选项需要类似于:

files: {
    'output.min.js': ''
}
于 2013-10-23T19:47:17.620 回答