Skip to content

Commit

Permalink
fix(grunt): avoid excluding minified scripts, it causes errors when b…
Browse files Browse the repository at this point in the history
…uilding the site
  • Loading branch information
sparanoid committed Mar 11, 2016
1 parent 412632b commit 6b271d0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Gruntfile.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -104,13 +104,13 @@ module.exports = (grunt) ->
{
expand: true
cwd: "<%= amsf.user.assets %>/_js/"
src: ["**/*.js", "!*.min.js"]
src: ["**/*.js"]
dest: "<%= amsf.user.assets %>/js/"
}
{
expand: true
cwd: "<%= amsf.theme.assets %>/_js/"
src: ["**/*.js", "!*.min.js"]
src: ["**/*.js"]
dest: "<%= amsf.theme.assets %>/js/"
}
]
Expand Down

0 comments on commit 6b271d0

Please sign in to comment.