mirror of
https://github.com/zhigang1992/yarn.git
synced 2026-06-17 05:49:56 +08:00
* Remove crappy folders from node_modules in dist tarballs * add windows version of scripts/clean-node-modules
11 lines
215 B
Bash
Executable File
11 lines
215 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# random browser builds that aren't used
|
|
rm -rf node_modules/core-js/client
|
|
|
|
# remove typescript files
|
|
rm -rf node_modules/rx/ts
|
|
|
|
# naughty modules that have their test folders
|
|
rm -rf node_modules/*/test
|