プロジェクトに yeoman を使用しています。
基本的には正常に動作していますが、ビルドプロセス中に画像フォルダーを別の場所に移動したいと考えています。
grunt-contrib-copy
だから私はそれを可能にするタスクをロードしました。残念ながら、これは yeoman 組み込みのコピー タスクと競合します。
両方を使用できるように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');