├── .babelrc ├── .editorconfig ├── .github ├── dependabot.yml └── workflows │ └── node.js.yml ├── .gitignore ├── .npmrc ├── license ├── package.json ├── readme.md └── src ├── babel6.spec.js ├── babel7.spec.js └── index.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laat/babel-plugin-transform-rename-import/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laat/babel-plugin-transform-rename-import/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laat/babel-plugin-transform-rename-import/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laat/babel-plugin-transform-rename-import/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laat/babel-plugin-transform-rename-import/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laat/babel-plugin-transform-rename-import/HEAD/license -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laat/babel-plugin-transform-rename-import/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laat/babel-plugin-transform-rename-import/HEAD/readme.md -------------------------------------------------------------------------------- /src/babel6.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laat/babel-plugin-transform-rename-import/HEAD/src/babel6.spec.js -------------------------------------------------------------------------------- /src/babel7.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laat/babel-plugin-transform-rename-import/HEAD/src/babel7.spec.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laat/babel-plugin-transform-rename-import/HEAD/src/index.js --------------------------------------------------------------------------------