Files
yarn/scripts/clean-node-modules.ps1
Sebastian McKenzie 96a0fbb94e Remove crappy folders from node_modules in dist tarballs (#1810)
* Remove crappy folders from node_modules in dist tarballs

* add windows version of scripts/clean-node-modules
2016-11-14 13:35:26 +00:00

12 lines
339 B
PowerShell
Executable File

# sometimes folders may not exist according to node/npm version etc so ignore them
$ErrorActionPreference = 'Continue'
# random browser builds that aren't used
rm node_modules/core-js/client -Recurse
# remove typescript files
rm node_modules/rx/ts -Recurse
# naughty modules that have their test folders
rm node_modules/*/test -Recurse