Skip to content

Commit

Permalink
#5391 - Fixes issue with deprecated uglify setting in build tools
Browse files Browse the repository at this point in the history
  • Loading branch information
jlukic committed Aug 6, 2017
1 parent 7e37d4a commit cd3a639
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions RELEASE-NOTES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
## RELEASE NOTES

### Version 2.2.12 - Aug 06, 2017

**Critical Bugs** (1)
- **Build Tools** - Fixes issue with deprecated uglify setting that could cause build tools to fail

### Version 2.2.11 - July 11, 2017

**Critical Bugs** (5)
Expand Down
8 changes: 4 additions & 4 deletions tasks/config/tasks.js
Original file line number Diff line number Diff line change
Expand Up @@ -144,8 +144,8 @@ module.exports = {

/* Minified JS Settings */
uglify: {
mangle : true,
preserveComments : 'some'
mangle : true,
comments : 'some'
},

/* Minified Concat CSS Settings */
Expand All @@ -158,8 +158,8 @@ module.exports = {

/* Minified Concat JS */
concatUglify: {
mangle : true,
preserveComments : false
mangle : true,
comments : false
}

}
Expand Down

0 comments on commit cd3a639

Please sign in to comment.