我需要使用 Grunt/grunt-contrib-uglify 缩小一组 JSON 文件(语言文件):
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
uglify: {
build: {
src: 'src/main/app/resources/locales/*/*.json',
dest: 'target/resources/locales/*/*.json'
}
}
});
我得到的是:
Files: src/main/app/resources/locales/en/messages.json -> target/*/*.json
Minifying with UglifyJS...Reading src/main/app/resources/locales/en/messages.json...OK
>> Uglifying source "src/main/app/resources/locales/en/messages.json" failed.
Warning: Uglification failed. Use --force to continue.
我开始怀疑,uglify 是否适用于纯 JSON 文件,还是仅适用于 JavaScript 源文件?JSON 文件的格式肯定是正确的,它以非最小化形式在应用程序中运行。