You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
302 B
14 lines
302 B
3 years ago
|
|
||
|
## source
|
||
|
https://www.npmjs.com/package/uglify-js
|
||
|
|
||
|
## installer uglify
|
||
|
npm install -g uglify-js
|
||
|
|
||
|
## compresser le js :
|
||
|
uglifyjs .\scripts-sources\main.js --compress -o .\scripts\main.js
|
||
|
|
||
|
## compresser avec source map
|
||
|
uglifyjs .\scripts-sources\main.js --compress --source-map -o .\scripts\main.js
|
||
|
|