Skip to content
This repository has been archived by the owner on Mar 26, 2018. It is now read-only.

Commit

Permalink
Still need concat for js
Browse files Browse the repository at this point in the history
  • Loading branch information
robdodson committed Aug 10, 2014
1 parent b55520d commit a8f2a63
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions app/templates/Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -112,9 +112,9 @@ module.exports = function (grunt) {
dist: {
files: [{
expand: true,
cwd: '<%= yeoman.dist %>',
src: '**/*.css',
dest: '<%= yeoman.dist %>'
cwd: '<%%= yeoman.dist %>',
src: ['**/*.css', '!bower_components/**/*.css'],
dest: '<%%= yeoman.dist %>'
}]
}
},
Expand Down Expand Up @@ -353,8 +353,8 @@ module.exports = function (grunt) {
'sass',<% } %>
'copy',
'useminPrepare',
'imagemin',<% if (!includeSass) { %>
'concat',<% } %>
'imagemin',
'concat',
'autoprefixer',
'uglify',<% if (!includeSass) { %>
'cssmin',<% } %>
Expand Down

0 comments on commit a8f2a63

Please sign in to comment.