PackageHelper/scripts/remove_bloat.sh

68 lines
1.2 KiB
Bash
Raw Normal View History

2019-09-11 22:28:50 -06:00
#!/bin/sh
# This script removes some stuff in `www/node_modules` that the app doesn't need to run.
# It removes about 6MB from the build size.
2019-09-28 21:23:57 -06:00
echo "Removing bloat in node_modules..."
2019-10-05 20:16:43 -06:00
pwd
2019-09-11 22:28:50 -06:00
cd www/node_modules
rm -rf dom7
rm -rf path-to-regexp
rm -rf ssr-window
rm -rf template7
cd @fortawesome/fontawesome-free
rm -rf js
rm -rf less
rm -rf scss
rm -rf sprites
rm -rf svgs
cd ../..
cd jquery
rm -rf src
rm -rf external
cd ..
cd jsbarcode
2019-11-14 21:23:50 -07:00
rm -rf .dockerignore .eslintignore .eslintrcautomation bower.json CONTRIBUTING.md docker-compose.yml Dockerfile example gulpfile.js jsbarcode.d.ts README.md src test .travis.yml
rm -rf dist/barcodes
rm -rf dist/JsBarcode.all.js
cd ..
2019-09-11 22:28:50 -06:00
cd framework7
rm -rf components
rm -rf lazy-components
rm -rf less
rm -rf modules
rm -rf utils
2019-09-28 21:23:57 -06:00
cd ..
2019-09-28 21:23:57 -06:00
cd material-design-icons
rm -rf action
rm -rf alert
rm -rf av
rm -rf bower.json
rm -rf communication
rm -rf content
rm -rf device
rm -rf editor
rm -rf file
rm -rf gulpfile.babel.js
rm -rf hardware
rm -rf image
rm -rf index.js
rm -rf maps
rm -rf navigation
rm -rf notification
rm -rf package.json
rm -rf places
rm -rf README.md
rm -rf social
rm -rf sprites
rm -rf toggle
cd ..
2019-09-28 21:23:57 -06:00
echo "Cleanup finished"