Browse Source

#5391 - Fixes issue with deprecated uglify setting in build tools

pull/4273/merge
Jack 7 years ago
parent
commit
cd3a639a54
2 changed files with 9 additions and 4 deletions
  1. 5
      RELEASE-NOTES.md
  2. 8
      tasks/config/tasks.js

5
RELEASE-NOTES.md

@ -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)

8
tasks/config/tasks.js

@ -144,8 +144,8 @@ module.exports = {
/* Minified JS Settings */
uglify: {
mangle : true,
preserveComments : 'some'
mangle : true,
comments : 'some'
},
/* Minified Concat CSS Settings */
@ -158,8 +158,8 @@ module.exports = {
/* Minified Concat JS */
concatUglify: {
mangle : true,
preserveComments : false
mangle : true,
comments : false
}
}

Loading…
Cancel
Save