├── .editorconfig ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── lib └── index.js ├── package.json └── test ├── .gitignore ├── index.js ├── package.json ├── some_directory ├── another_module.js └── index.js ├── some_module.js └── webpack.config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renke/auto-install-webpack-plugin/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | /index.js -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .editorconfig -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renke/auto-install-webpack-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renke/auto-install-webpack-plugin/HEAD/README.md -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renke/auto-install-webpack-plugin/HEAD/lib/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renke/auto-install-webpack-plugin/HEAD/package.json -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renke/auto-install-webpack-plugin/HEAD/test/index.js -------------------------------------------------------------------------------- /test/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renke/auto-install-webpack-plugin/HEAD/test/package.json -------------------------------------------------------------------------------- /test/some_directory/another_module.js: -------------------------------------------------------------------------------- 1 | require("lodash.times"); -------------------------------------------------------------------------------- /test/some_directory/index.js: -------------------------------------------------------------------------------- 1 | require("lodash.pluck"); -------------------------------------------------------------------------------- /test/some_module.js: -------------------------------------------------------------------------------- 1 | require("lodash.assign"); -------------------------------------------------------------------------------- /test/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renke/auto-install-webpack-plugin/HEAD/test/webpack.config.js --------------------------------------------------------------------------------