我使用Grunt 0.4.1和Grunt-contrib-copy版本0.4.1。我試圖將圖像從src目錄複製到分發目錄,但它將複製完整的src目錄而不是僅複製圖像目錄的內容。換句話說,這是創造DIST /圖片/ src目錄/圖片/ ...,而我想要的結果僅僅是DIST /圖片/ ...使用Grunt Copy將圖像複製到新目錄
這裏是我的複製任務:
copy: {
images: {
files: {
'dist/images/': 'src/images/**/*'
}
}
}
,並按如下它正在運行:
// Default task.
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-less');
grunt.loadNpmTasks('grunt-contrib-cssmin');
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.registerTask('default', ['less', 'concat', 'uglify', 'cssmin', 'copy']);
我如何得到它,以便只有的src /圖像的子目錄被複制到dist/images?
這些文件已經被壓縮,只需要在構建期間複製到目的地。