Comparing version 13.0.7 to 13.1.0
@@ -0,1 +1,11 @@ | ||
<a name="13.1.0"></a> | ||
# [13.1.0](https://github.com/ipfs/aegir/compare/v13.0.7...v13.1.0) (2018-04-24) | ||
### Features | ||
* enable uglify mangle and compress ([8d323b7](https://github.com/ipfs/aegir/commit/8d323b7)) | ||
<a name="13.0.7"></a> | ||
@@ -2,0 +12,0 @@ ## [13.0.7](https://github.com/ipfs/aegir/compare/v13.0.6...v13.0.7) (2018-04-16) |
{ | ||
"name": "aegir", | ||
"version": "13.0.7", | ||
"version": "13.1.0", | ||
"description": "JavaScript project management", | ||
@@ -96,2 +96,3 @@ "main": "cli.js", | ||
"David Dias <daviddias.p@gmail.com>", | ||
"Diogo Silva <fsdiogo@gmail.com>", | ||
"Dmitriy Ryajov <dryajov@gmail.com>", | ||
@@ -98,0 +99,0 @@ "Garren Smith <garren.smith@gmail.com>", |
@@ -42,4 +42,4 @@ 'use strict' | ||
const result = Uglify.minify(code.toString(), { | ||
mangle: false, | ||
compress: false | ||
mangle: true, | ||
compress: { unused: false } | ||
}) | ||
@@ -46,0 +46,0 @@ if (result.error) { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
85907