├── .editorconfig ├── .gitignore ├── LICENSE.md ├── README.md ├── eslint.config.cjs ├── package.json ├── src ├── index.ts └── types │ └── wordpress-dependency-extraction-webpack-plugin.d.ts ├── tests └── index.test.ts ├── tsconfig.json └── vitest.config.ts /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/vite-plugin/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | /dist/ 3 | /npm-debug.log 4 | /package-lock.json 5 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/vite-plugin/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/vite-plugin/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/vite-plugin/HEAD/eslint.config.cjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/vite-plugin/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/vite-plugin/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/types/wordpress-dependency-extraction-webpack-plugin.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/vite-plugin/HEAD/src/types/wordpress-dependency-extraction-webpack-plugin.d.ts -------------------------------------------------------------------------------- /tests/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/vite-plugin/HEAD/tests/index.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/vite-plugin/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/vite-plugin/HEAD/vitest.config.ts --------------------------------------------------------------------------------