├── .babelrc ├── .eslintignore ├── .eslintrc ├── .gitignore ├── .npmignore ├── .npmrc ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── package.json ├── src └── index.js └── test ├── .eslintrc ├── fixtures ├── basic-import │ ├── actual.js │ └── expected.js ├── chained-import │ ├── actual.js │ └── expected.js ├── dynamic-argument │ ├── actual.js │ └── expected.js └── nested-import │ ├── actual.js │ └── expected.js ├── index.js └── testPlugin.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/babel-plugin-dynamic-import-webpack/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | test/fixtures 2 | lib/ 3 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/babel-plugin-dynamic-import-webpack/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/babel-plugin-dynamic-import-webpack/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | src/ 2 | test/ 3 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/babel-plugin-dynamic-import-webpack/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/babel-plugin-dynamic-import-webpack/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/babel-plugin-dynamic-import-webpack/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/babel-plugin-dynamic-import-webpack/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/babel-plugin-dynamic-import-webpack/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/babel-plugin-dynamic-import-webpack/HEAD/src/index.js -------------------------------------------------------------------------------- /test/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/babel-plugin-dynamic-import-webpack/HEAD/test/.eslintrc -------------------------------------------------------------------------------- /test/fixtures/basic-import/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/babel-plugin-dynamic-import-webpack/HEAD/test/fixtures/basic-import/actual.js -------------------------------------------------------------------------------- /test/fixtures/basic-import/expected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/babel-plugin-dynamic-import-webpack/HEAD/test/fixtures/basic-import/expected.js -------------------------------------------------------------------------------- /test/fixtures/chained-import/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/babel-plugin-dynamic-import-webpack/HEAD/test/fixtures/chained-import/actual.js -------------------------------------------------------------------------------- /test/fixtures/chained-import/expected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/babel-plugin-dynamic-import-webpack/HEAD/test/fixtures/chained-import/expected.js -------------------------------------------------------------------------------- /test/fixtures/dynamic-argument/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/babel-plugin-dynamic-import-webpack/HEAD/test/fixtures/dynamic-argument/actual.js -------------------------------------------------------------------------------- /test/fixtures/dynamic-argument/expected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/babel-plugin-dynamic-import-webpack/HEAD/test/fixtures/dynamic-argument/expected.js -------------------------------------------------------------------------------- /test/fixtures/nested-import/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/babel-plugin-dynamic-import-webpack/HEAD/test/fixtures/nested-import/actual.js -------------------------------------------------------------------------------- /test/fixtures/nested-import/expected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/babel-plugin-dynamic-import-webpack/HEAD/test/fixtures/nested-import/expected.js -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/babel-plugin-dynamic-import-webpack/HEAD/test/index.js -------------------------------------------------------------------------------- /test/testPlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/babel-plugin-dynamic-import-webpack/HEAD/test/testPlugin.js --------------------------------------------------------------------------------