Skip to content

Instantly share code, notes, and snippets.

@nick
Created January 20, 2016 21:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nick/f80aa2b7763ea7254037 to your computer and use it in GitHub Desktop.
Save nick/f80aa2b7763ea7254037 to your computer and use it in GitHub Desktop.
Find used JS files
webpack --display-modules > files.txt
cut -d ' ' -f 3 files.txt | grep ^\.\/js | sort > used-js.txt
find ./js -name '*.js' | sort > all-js.txt
comm -3 all-js.txt used-js.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment