我有一个 grunt 文件。目前我只为 src 和 dest 设置了一个文件。它运作良好。如何为从文件夹到目标文件夹的所有 js 文件设置这个?
这是我的配置文件:
module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
uglify: {
options: {
banner: '/*\n <%= pkg.name %> <%= grunt.template.today("yyyy-mm-dd") %> \n*/\n'
},
build: {
files: {
'dist/js/newMagic.min.js' : 'js/script/helloWorld.js'
//instead how to set dest/js : js/script/alljsfiles?
}
}
}
});
grunt.loadNpmTasks('grunt-contrib-uglify'); //this is only one runs.
grunt.loadNpmTasks('grunt-contrib-watch'); how to run both?
};
我的命令:grunt uglify