Proper paths

This commit is contained in:
Vadim Makeev 2015-12-13 17:52:49 +03:00
parent bbdf11f8fb
commit c68e1b6a83
1 changed files with 7 additions and 7 deletions

View File

@ -17,10 +17,10 @@ module.exports = function(grunt) {
'**', '**',
'!node_modules/**', '!node_modules/**',
'!bower_components/**', '!bower_components/**',
'!Contributing.md', '!CONTRIBUTING.md',
'!Gruntfile.js', '!Gruntfile.js',
'!License.md', '!LICENSE.md',
'!Readme.md', '!README.md',
'!bower.json', '!bower.json',
'!package.json' '!package.json'
], ],
@ -45,13 +45,13 @@ module.exports = function(grunt) {
dest: 'temp/pres/shower/themes/ribbon/' dest: 'temp/pres/shower/themes/ribbon/'
},{ },{
expand: true, expand: true,
cwd: 'node_modules/shower-bright/', cwd: 'node_modules/shower-material/',
src: [ src: [
'**', '**',
'!package.json', '!package.json',
'!Readme.md' '!README.md'
], ],
dest: 'temp/pres/shower/themes/bright/' dest: 'temp/pres/shower/themes/material/'
}] }]
} }
}, },
@ -63,7 +63,7 @@ module.exports = function(grunt) {
from: /(node_modules|bower_components)\/shower-core/g, from: /(node_modules|bower_components)\/shower-core/g,
to: 'shower' to: 'shower'
},{ },{
from: /(node_modules|bower_components)\/shower-(ribbon|bright)/g, from: /(node_modules|bower_components)\/shower-(ribbon|material)/g,
to: 'shower/themes/$2' to: 'shower/themes/$2'
}] }]
}, },