Skip to content

Commit

Permalink
refactor(app generator): minification will produce the same artifact …
Browse files Browse the repository at this point in the history
…(name) as an as-is build
  • Loading branch information
cueedee committed Mar 18, 2015
1 parent 3eae23c commit cb17aa0
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions generators/app/templates/_Gruntfile.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -269,10 +269,6 @@ module.exports = ( grunt ) ->
]


uglify:
src: [ 'dist/app/bundle.js' ]


##
## Compile your sass to bundled css.
##
Expand Down Expand Up @@ -386,7 +382,7 @@ module.exports = ( grunt ) ->
uglify:
dist:
files:
'dist/app/bundle.min.js': [ 'dist/app/bundle.js' ]
'dist/app/bundle.js': [ 'dist/app/bundle.js' ]


mochaTest:
Expand Down Expand Up @@ -685,7 +681,6 @@ module.exports = ( grunt ) ->
'app:dist'

'uglify:dist'
'clean:uglify'

'compress:app_dist'

Expand Down

0 comments on commit cb17aa0

Please sign in to comment.