我想创建某种任务,我可以从不同的 json 文件中读取自定义配置,并将咖啡源文件中的内容替换为 json 文件的内容,并连接源文件。
我的项目设置:
./src
- 文件 1.coffee
- 文件 2.coffee
./配置
/文件夹1
- development.json(包含:{“key”:“value1”}
- production.json(包含:{“key”:“value2”}
/文件夹2
- development.json(包含:{“key”:“value3”}
- production.json(包含:{“key”:“value4”}
./dist
- 包名.coffee
- 包名.js
file1.coffee 包含
myVar = '@@putkeyhere'
version = '@@version'
...
我已经为自己配置并运行了 grunt concat 任务:
concat: {
dist: {
src: ['<banner>', './src/*.coffee'],
dest: './dist/<%= pkg.name %>.coffee'
}
},
我有 grunt-replace 任务(当我在已经连接的文件上运行“grunt replace”时,版本等的替换已经开始工作了)
replace: {
dist: {
options: {
variables: {
'created': '<%= grunt.template.today("dd.mm.yyyy HH:MM:ss") %>',
'environment': 'dev',
'version': '<%= pkg.version %>'
},
prefix: '@@'
},
files: {
'dist/': ['./dist/<%= pkg.name %>.coffee']
}
}
},
最后是咖啡编译任务:
coffee: {
compile: {
files: {
'./dist/<%= pkg.name %>.js': ['./dist/*.coffee']
}
}
}
所有任务都为自己工作,但我需要从 config-json 文件中读取内容并将内容替换为连接的咖啡文件,然后将所有文件编译为 js。
我尝试过这样的事情,但感觉不对:
grunt.registerTask('mytask', '', function (env) {
env = env || 'development';
if (env !== 'development' && env !== 'production') {
grunt.log.error("'" + env + "' is not valid environment");
return false;
}
var c = grunt.option('c');
if(c) {
// if i run the task "grunt mytask:production -c folder2 it should read
// ./config/folder2/development.json
// that works that way, but i dont think this is a good solution
var config = grunt.file.readJSON('./config/' + c + '/' + env + '.json')
} else {
// here i need to iterate for all folders in ./config, and do stuff for all
}
});
多任务是一个选项吗?但是如何从 config.json 文件中动态读取呢?
感谢你的帮助!