module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
copy: {
files: [
{expand: true,cwd:"js/" ,src: ['libs/*'], dest: '../test/js/libs/'},
{expand: true,cwd:"js/" , src: ['models/*'], dest: '../test/js/models/'}
]
}
});
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.registerTask("testcopy",["copy"]);
);
我正在學習grunt,並且在複製時遇到以下問題。 Warning: undefined is not a function Use --force to continue.
和文件沒有從src複製到目標複製不在grunt中工作
在上面的代碼行上發生錯誤? – Oxi
它沒有提供任何線路號碼。只是一個消息警告:未定義不是一個函數使用 - 強制繼續。 – Abdul
有'';''而不是'};這是代碼中的錯誤還是堆棧溢出? –