├── .babelrc ├── .eslintrc.js ├── .gitignore ├── README.md ├── __tests__ ├── __snapshots__ │ └── index.js.snap └── index.js ├── circle.yml ├── fixtures ├── badfile.cjsx └── testfile.cjsx ├── issue_template.md ├── package.json ├── src └── index.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/depercolator/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/depercolator/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/depercolator/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/depercolator/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/__snapshots__/index.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/depercolator/HEAD/__tests__/__snapshots__/index.js.snap -------------------------------------------------------------------------------- /__tests__/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/depercolator/HEAD/__tests__/index.js -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/depercolator/HEAD/circle.yml -------------------------------------------------------------------------------- /fixtures/badfile.cjsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/depercolator/HEAD/fixtures/badfile.cjsx -------------------------------------------------------------------------------- /fixtures/testfile.cjsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/depercolator/HEAD/fixtures/testfile.cjsx -------------------------------------------------------------------------------- /issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/depercolator/HEAD/issue_template.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/depercolator/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/depercolator/HEAD/src/index.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/depercolator/HEAD/yarn.lock --------------------------------------------------------------------------------