├── .gitignore ├── .npmignore ├── LICENSE ├── Readme.md ├── analyzeFile.js ├── docs └── screencap.gif ├── index.js ├── package.json ├── processFile.js ├── removeUnused.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | docs 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/stylecleanup/HEAD/LICENSE -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/stylecleanup/HEAD/Readme.md -------------------------------------------------------------------------------- /analyzeFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/stylecleanup/HEAD/analyzeFile.js -------------------------------------------------------------------------------- /docs/screencap.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/stylecleanup/HEAD/docs/screencap.gif -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/stylecleanup/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/stylecleanup/HEAD/package.json -------------------------------------------------------------------------------- /processFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/stylecleanup/HEAD/processFile.js -------------------------------------------------------------------------------- /removeUnused.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/stylecleanup/HEAD/removeUnused.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredly/stylecleanup/HEAD/yarn.lock --------------------------------------------------------------------------------