mirror of
https://github.com/systemjs/systemjs.git
synced 2026-01-25 14:57:38 +00:00
8 lines
175 B
Bash
8 lines
175 B
Bash
cp src/extras/* dist/extras/
|
|
cd dist/extras
|
|
rm *.min.js
|
|
for f in *.js
|
|
do
|
|
short=${f%.js}
|
|
../../node_modules/.bin/terser $f -c passes=2 -m --source-map -o $short.min.js
|
|
done |