即时通讯使用的自耕农的一个项目。
基本上,它的正常工作,但在构建过程中,我想我的图片文件夹移动到别的地方。
所以我装了grunt-contrib-copy
任务,这将让我做。 但不幸的是这种冲突与自耕农内置的复制任务。
有没有什么办法,以别名grunt-contrib-copy
我的Gruntfile.js
这样我就可以使用这两者?
grunt.loadNpmTasks('grunt-contrib-copy');
//Here I need to use "copy" again but not referencing the yeoman task but the grunt-contrib-copy task.
grunt.registerTask('build','intro clean coffee compass mkdirs concat css min replace copy time');