我正在使用grunt来连接两个文件。 Grunt成功运行甚至创建了一个文件,但是当我打开文件时,我看不到任何内容。该文件绝对是空的。我的“GruntFile.js”的内容如下:
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
concat: {
options: {
separator: "\n\n"
},
dist: {
src: [
'overview/js/File1.js',
'overview/js/File2.js'
],
dest: 'overview/js/build/production.js'
}
}
});
// 3. Where we tell Grunt we plan to use this plug-in.
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.registerTask('default', ['concat']);
非常感谢这方面的任何帮助。