我已经尝试了一段时间以特定的方式组合两个Grunt JS插件。 基本上,我想使用UglifyJS缩小目录中的所有JS文件。在此之后,我想使用版本控制插件(在本例中为grunt-static-versioning)来实现缓存清除。
我的gruntfile如下:
module.exports = function(grunt) {
grunt.initConfig({
clean: ['dest/js'],
uglify: {
options: {
report: 'min',
mangle: true
},
my_target: {
files: [{
expand: true,
cwd: 'src/js',
src: '**/*.js',
dest: 'dest/js'
}]
}
},
cssmin: {
options: {
report:'min'
},
minify: {
expand:true,
cwd: 'src/css',
src: '**/*.css',
dest: 'dest/css',
}
},
imagemin: {
dynamic: {
options: {
optimizationLevel: 7
},
files: [{
expand:true,
cwd: 'src/assets',
src: ['**/*.{png,jpg,gif}'],
dest: 'dest/assets'
}]
}
},
htmlmin: {
mini :{
options: {
removeComments: true,
collapseWhitespace: true,
collapseBooleanAttributes: true,
removeAttributeQuotes: true,
removeRedundantAttributes: true,
removeEmptyAttributes: true,
useShortDoctype: true
},
files: [{
expand:true,
cwd: 'src',
src: '**/*.html',
dest: 'dest'
}]
}
},
versioning: { // Task
options: { // Task options
cwd: ''
},
dist: { // Target
options: { // Target options
},
files: [{
assets: '<%= uglify.my_target.files %>',
key: 'global',
dest: 'dest/js',
type: 'js',
ext: '.js'
}]
}
}
});
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks('grunt-static-versioning');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-cssmin');
grunt.loadNpmTasks('grunt-contrib-imagemin');
grunt.loadNpmTasks('grunt-contrib-htmlmin');
grunt.registerTask('default', ['clean', 'uglify', 'cssmin', 'imagemin', 'htmlmin', 'versioning']);}
然而,执行时我收到以下错误:
Running "versioning:dist" (versioning) task
Warning: Unable to read "dest/js" file (Error code: EISDIR). Use --force to continue.
我理解发生此错误是因为dest / js不是文件而是目录,但我不知道如何告诉版本正确的文件名。是否有特定的Grunt JS格式来执行此操作?
答案 0 :(得分:3)
似乎有一些其他选项被启用导致上述错误。 我纠正了这些并做了一些改变。 运行以下grunt文件,看看是否可以执行而没有任何错误。
module.exports = function(grunt) {
grunt.initConfig({
clean : [ 'dest/js' ],
uglify : {
options : {
report : 'min',
mangle : true
},
my_target : {
files : [ {
src : 'src/js/*.js',
dest : 'dest/js/main.min.js'
} ]
}
},
cssmin : {
options : {
report : 'min'
},
minify : {
expand : true,
cwd : 'src/css',
src : '**/*.css',
dest : 'dest/css',
}
},
imagemin : {
dynamic : {
options : {
optimizationLevel : 7
},
files : [ {
expand : true,
cwd : 'src/assets',
src : [ '**/*.{png,jpg,gif}' ],
dest : 'dest/assets'
} ]
}
},
htmlmin : {
mini : {
options : {
removeComments : true,
collapseWhitespace : true,
collapseBooleanAttributes : true,
removeAttributeQuotes : true,
removeRedundantAttributes : true,
removeEmptyAttributes : true,
useShortDoctype : true
},
files : [ {
expand : true,
cwd : 'src',
src : '**/*.html',
dest : 'dest'
} ]
}
},
versioning : { // Task
options : { // Task options
cwd : 'public',
outputConfigDir : 'public/config'
},
dist : { // Target
options : { // Target options
},
files : [ {
assets : '<%= uglify.my_target.files %>',
key : 'global',
dest : 'dest/js',
type : 'js',
ext : '.js'
} ]
}
}
});
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks('grunt-static-versioning');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-cssmin');
grunt.loadNpmTasks('grunt-contrib-imagemin');
grunt.loadNpmTasks('grunt-contrib-htmlmin');
grunt.registerTask('default', [ 'clean', 'uglify', 'cssmin', 'imagemin',
'htmlmin', 'versioning' ]);
}