您可以根據需要輕鬆地將配置存儲在儘可能多的外部JSON文件中。 grunt.file.readJSON會幫助你在這裏。例如:
module.exports = function(grunt) {
var concatConf = grunt.file.readJSON('../concat-common.json'),
minConf = grunt.file.readJSON('../min-common.json');
// do whatever you want with concatConf and minConf here
// ...
// Project configuration.
grunt.initConfig({
pkg: '<json:grunt-sample.jquery.json>',
meta: {
banner: '/*! <%= pkg.title || pkg.name %> - v<%= pkg.version %> - ' +
'<%= grunt.template.today("yyyy-mm-dd") %>\n' +
'<%= pkg.homepage ? "* " + pkg.homepage + "\n" : "" %>' +
'* Copyright (c) <%= grunt.template.today("yyyy") %> <%= pkg.author.name %>;' +
' Licensed <%= _.pluck(pkg.licenses, "type").join(", ") %> */'
},
concat: concatConf,
min: minConf
// ...
});
// Default task.
grunt.registerTask('default', 'concat min');
};
不要忘記,gruntfile是在節點執行常規的JavaScript文件中的環境和配置選項是常規的JavaScript對象:)
而且 - '無功配置=需要(__目錄名稱+「/最小common.json「);' –