1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-22 13:13:03 +02:00

Merge pull request #14488 from vsn4ik/gruntfile_copy_task

Gruntfile.js: Simplify copy task.
This commit is contained in:
Chris Rebert
2014-08-29 20:08:49 -07:00

View File

@@ -291,19 +291,12 @@ module.exports = function (grunt) {
copy: {
fonts: {
expand: true,
src: 'fonts/*',
dest: 'dist/'
},
docs: {
expand: true,
cwd: './dist',
src: [
'css/*',
'js/*',
'fonts/*'
],
dest: 'docs/dist'
src: 'dist/*/*',
dest: 'docs/'
}
},