我正在尝试读取外部 json 文件并在自定义任务中使用它:
里面initConfig
grunt.initConfig({
env: grunt.file.readJSON("PATH"),
...
..
.
});
// Registering a task
grunt.registerTask('Namehere', 'DescriptionHere', function () {
// HOW DO I GET AT THE "env"
"<%= env.environment %>" // Doesnt work just gives me the string literal "<%= environmentVars.environment %>"
});