Skip to content

Commit

Permalink
fix(app): fix folder depth in rev and usemin globs
Browse files Browse the repository at this point in the history
  • Loading branch information
kingcody committed Jul 18, 2015
1 parent 655ce10 commit 18f8d31
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions app/templates/Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ module.exports = function (grunt) {
filerev: {
dist: {
src: [
'<%%= yeoman.dist %>/client/!(bower_components)/{,*/}*.{js,css}',
'<%%= yeoman.dist %>/client/!(bower_components){,*/}*.{js,css}',
'<%%= yeoman.dist %>/client/assets/images/{,*/}*.{png,jpg,jpeg,gif,webp,svg}',
'<%%= yeoman.dist %>/client/assets/fonts/*'
]
Expand All @@ -269,9 +269,9 @@ module.exports = function (grunt) {

// Performs rewrites based on rev and the useminPrepare configuration
usemin: {
html: ['<%%= yeoman.dist %>/client/!(bower_components)/{,*/}*.html'],
css: ['<%%= yeoman.dist %>/client/!(bower_components)/{,*/}*.css'],
js: ['<%%= yeoman.dist %>/client/!(bower_components)/{,*/}*.js'],
html: ['<%%= yeoman.dist %>/client/!(bower_components){,*/}*.html'],
css: ['<%%= yeoman.dist %>/client/!(bower_components){,*/}*.css'],
js: ['<%%= yeoman.dist %>/client/!(bower_components){,*/}*.js'],
options: {
assetsDirs: [
'<%%= yeoman.dist %>/client',
Expand Down

0 comments on commit 18f8d31

Please sign in to comment.