基本上我正在尝试做的是设置一个任务,它将文件夹包含的所有内容复制到Grunt上面的文件夹中。因此创建了一个'tmp'文件夹,我希望将该文件夹中的文件复制到dist文件夹中。这是我目前正在尝试但似乎忽略了配置。
module.exports = function(grunt) {
'use strict';
// Project configuration.
grunt.initConfig({
uglify: {
options: {
mangle: true,
compress: {
drop_console: true,
dead_code: false,
unused: false
}
},
files: {
expand: true,
cwd: "<%= ref.staging%>",
src: ["**/*.js", '!test/**', '!test_local.html'],
dest: "<%= ref.process%>"
}
},
copy: {
dist: {
src: "dist/tmp/**",
dest: "dist/"
}
}
});
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('@sap/grunt-sapui5-bestpractice-build');
grunt.registerTask('default', [
'clean',
'uglify',
'copy'
]);
};
答案 0 :(得分:0)
尝试这种方式:
copy: {
files: {
src: ["dist/tmp/**"],
dest: "dist/"
}
}