Skip to content
This repository has been archived by the owner on May 20, 2024. It is now read-only.

Commit

Permalink
- [grunt] remove uncompressed js files from build
Browse files Browse the repository at this point in the history
  • Loading branch information
mrhyde committed May 24, 2015
1 parent 7004850 commit ccd92fc
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
3 changes: 2 additions & 1 deletion gruntfile.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -128,13 +128,14 @@ module.exports = (grunt) ->
'autoprefixer:build'
'uncss:build'
'csso:build'
'clean:styles'
'processhtml:build'
'shell'
'uglify:build'
'htmlmin:build'
'responsive_images:thumbnails'
'tinypng:build'
'clean:styles'
'clean:scripts'
'cacheBust:build'
'size_report:build'
]
Expand Down
6 changes: 6 additions & 0 deletions tasks/grunt-contrib-clean.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,12 @@ module.exports = ->
src: [
'<%= path.temp.root %>/*'
]
scripts:
files:
src: [
'<%= path.build.scripts %>/*'
'!<%= file.build.script.min %>'
]
styles:
files:
src: [
Expand Down

0 comments on commit ccd92fc

Please sign in to comment.