├── .babelrc ├── .circleci └── config.yml ├── .gitignore ├── .npmignore ├── .prettierrc ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── package.json ├── spec ├── helpers.js └── plugin-spec.js └── src ├── common.ts ├── index.ts ├── visitor-mark.ts ├── visitor-removal-decl.ts └── visitor-removal.ts /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steelbrain/babel-plugin-remove-unused-vars/HEAD/.babelrc -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steelbrain/babel-plugin-remove-unused-vars/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | node_modules 3 | /lib 4 | *.DS_Store 5 | spec/fixtures/ignored 6 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | node_modules 3 | spec/ 4 | src/ 5 | *.DS_Store 6 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steelbrain/babel-plugin-remove-unused-vars/HEAD/.prettierrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steelbrain/babel-plugin-remove-unused-vars/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steelbrain/babel-plugin-remove-unused-vars/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steelbrain/babel-plugin-remove-unused-vars/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steelbrain/babel-plugin-remove-unused-vars/HEAD/package.json -------------------------------------------------------------------------------- /spec/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steelbrain/babel-plugin-remove-unused-vars/HEAD/spec/helpers.js -------------------------------------------------------------------------------- /spec/plugin-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steelbrain/babel-plugin-remove-unused-vars/HEAD/spec/plugin-spec.js -------------------------------------------------------------------------------- /src/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steelbrain/babel-plugin-remove-unused-vars/HEAD/src/common.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steelbrain/babel-plugin-remove-unused-vars/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/visitor-mark.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steelbrain/babel-plugin-remove-unused-vars/HEAD/src/visitor-mark.ts -------------------------------------------------------------------------------- /src/visitor-removal-decl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steelbrain/babel-plugin-remove-unused-vars/HEAD/src/visitor-removal-decl.ts -------------------------------------------------------------------------------- /src/visitor-removal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steelbrain/babel-plugin-remove-unused-vars/HEAD/src/visitor-removal.ts --------------------------------------------------------------------------------