Use UglifyJS 2.4.7

The |uglifyjs| call had to be adapted because the options changed
significantly in version 2.
redux
David Majda 10 years ago
parent 976328b7d6
commit 1ea9a5f340

@ -106,7 +106,12 @@ browser:
echo ' return modules["peg"]' >> $(BROWSER_FILE_DEV) echo ' return modules["peg"]' >> $(BROWSER_FILE_DEV)
echo '})();' >> $(BROWSER_FILE_DEV) echo '})();' >> $(BROWSER_FILE_DEV)
$(UGLIFYJS) --ascii -o $(BROWSER_FILE_MIN) $(BROWSER_FILE_DEV) $(UGLIFYJS) \
--mangle \
--compress warnings=false \
--comments /Copyright/ \
-o $(BROWSER_FILE_MIN) \
$(BROWSER_FILE_DEV)
# Remove browser version of the library (created by "browser") # Remove browser version of the library (created by "browser")
browserclean: browserclean:

@ -42,7 +42,7 @@
}, },
"devDependencies": { "devDependencies": {
"jasmine-node": "= 1.11.0", "jasmine-node": "= 1.11.0",
"uglify-js": "= 1.3.4", "uglify-js": "= 2.4.7",
"jshint": "= 0.9.1" "jshint": "= 0.9.1"
}, },
"engines": { "engines": {

Loading…
Cancel
Save