私の構造は以下のようなものです。assets フォルダーを app ディレクトリから dist ディレクトリにコピーしたいですか?
app
assets
imgs
css
fonts
index.html
dist
私の構造は以下のようなものです。assets フォルダーを app ディレクトリから dist ディレクトリにコピーしたいですか?
app
assets
imgs
css
fonts
index.html
dist
現在の作業ディレクトリをappに設定します。assetsのすべてのサブディレクトリとファイルを選択します。宛先をdestに設定します。
grunt.initConfig({
copy: {
dist: {
cwd: 'app',
src: ['assets/**/*'],
dest: 'dist/',
expand: true
}
}
});
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.registerTask('default', ['copy:dist']);