1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-23 05:33:02 +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: { copy: {
fonts: { fonts: {
expand: true,
src: 'fonts/*', src: 'fonts/*',
dest: 'dist/' dest: 'dist/'
}, },
docs: { docs: {
expand: true, src: 'dist/*/*',
cwd: './dist', dest: 'docs/'
src: [
'css/*',
'js/*',
'fonts/*'
],
dest: 'docs/dist'
} }
}, },