Browse Source

updates gruntfile for theme paths

1.0
jlukic 11 years ago
parent
commit
63ba7b0459
  1. 19
      Gruntfile.js

19
Gruntfile.js

@ -174,6 +174,7 @@ module.exports = function(grunt) {
'build/examples/**/*',
'src/**/*.less',
'src/**/*.variables',
'src/**/*.config',
'src/**/*.js'
],
tasks : watchTasks
@ -327,8 +328,7 @@ module.exports = function(grunt) {
cwd : 'src/',
src : [
'**/*.js',
'images/*',
'fonts/*'
'theme/**/*'
],
dest : 'docs/build/uncompressed'
},
@ -337,8 +337,7 @@ module.exports = function(grunt) {
expand : true,
cwd : 'src/',
src : [
'images/*',
'fonts/*'
'theme/**/*'
],
dest : 'docs/build/minified'
},
@ -348,8 +347,7 @@ module.exports = function(grunt) {
expand : true,
cwd : 'src/',
src : [
'images/*',
'fonts/*'
'theme/**/*'
],
dest : 'docs/build/packaged'
}
@ -374,8 +372,7 @@ module.exports = function(grunt) {
cwd : 'src/',
src : [
'**/*.js',
'images/*',
'fonts/*'
'theme/**/*'
],
dest : 'build/uncompressed'
},
@ -384,8 +381,7 @@ module.exports = function(grunt) {
expand : true,
cwd : 'src/',
src : [
'images/*',
'fonts/*'
'theme/**/*'
],
dest : 'build/minified'
},
@ -395,8 +391,7 @@ module.exports = function(grunt) {
expand : true,
cwd : 'src/',
src : [
'images/*',
'fonts/*'
'theme/**/*'
],
dest : 'build/packaged'
}

Loading…
Cancel
Save