├── .editorconfig ├── .github └── workflows │ ├── ci.yml │ └── release.yml ├── .gitignore ├── .npmrc ├── .nvmrc ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── eslint.config.js ├── package.json ├── playground ├── components │ └── my-component │ │ ├── my-component.css │ │ ├── my-component.spec.ts │ │ ├── my-component.tsx │ │ └── readme.md ├── index.html ├── main.ts ├── package.json ├── src │ └── components.d.ts ├── tsconfig.json ├── utils │ └── utils.ts └── vite.config.ts ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── scripts └── postbuild.ts ├── src ├── astro.ts ├── build-queue.ts ├── constants.ts ├── esbuild.ts ├── index.ts ├── nuxt.ts ├── rollup.ts ├── rspack.ts ├── types.ts ├── utils.ts ├── vite.ts └── webpack.ts ├── test └── utils.test.ts ├── tsconfig.json ├── tsup.config.ts └── vitest.config.ts /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencil-community/unplugin-stencil/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencil-community/unplugin-stencil/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencil-community/unplugin-stencil/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencil-community/unplugin-stencil/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencil-community/unplugin-stencil/HEAD/.npmrc -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v20.12.0 2 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "eslint.experimental.useFlatConfig": true 3 | } 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencil-community/unplugin-stencil/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencil-community/unplugin-stencil/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencil-community/unplugin-stencil/HEAD/eslint.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencil-community/unplugin-stencil/HEAD/package.json -------------------------------------------------------------------------------- /playground/components/my-component/my-component.css: -------------------------------------------------------------------------------- 1 | div { 2 | font-weight: bold; 3 | } 4 | -------------------------------------------------------------------------------- /playground/components/my-component/my-component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencil-community/unplugin-stencil/HEAD/playground/components/my-component/my-component.spec.ts -------------------------------------------------------------------------------- /playground/components/my-component/my-component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencil-community/unplugin-stencil/HEAD/playground/components/my-component/my-component.tsx -------------------------------------------------------------------------------- /playground/components/my-component/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencil-community/unplugin-stencil/HEAD/playground/components/my-component/readme.md -------------------------------------------------------------------------------- /playground/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencil-community/unplugin-stencil/HEAD/playground/index.html -------------------------------------------------------------------------------- /playground/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencil-community/unplugin-stencil/HEAD/playground/main.ts -------------------------------------------------------------------------------- /playground/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencil-community/unplugin-stencil/HEAD/playground/package.json -------------------------------------------------------------------------------- /playground/src/components.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencil-community/unplugin-stencil/HEAD/playground/src/components.d.ts -------------------------------------------------------------------------------- /playground/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencil-community/unplugin-stencil/HEAD/playground/tsconfig.json -------------------------------------------------------------------------------- /playground/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencil-community/unplugin-stencil/HEAD/playground/utils/utils.ts -------------------------------------------------------------------------------- /playground/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencil-community/unplugin-stencil/HEAD/playground/vite.config.ts -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencil-community/unplugin-stencil/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- 1 | packages: 2 | - playground 3 | -------------------------------------------------------------------------------- /scripts/postbuild.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencil-community/unplugin-stencil/HEAD/scripts/postbuild.ts -------------------------------------------------------------------------------- /src/astro.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencil-community/unplugin-stencil/HEAD/src/astro.ts -------------------------------------------------------------------------------- /src/build-queue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencil-community/unplugin-stencil/HEAD/src/build-queue.ts -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencil-community/unplugin-stencil/HEAD/src/constants.ts -------------------------------------------------------------------------------- /src/esbuild.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencil-community/unplugin-stencil/HEAD/src/esbuild.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencil-community/unplugin-stencil/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/nuxt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencil-community/unplugin-stencil/HEAD/src/nuxt.ts -------------------------------------------------------------------------------- /src/rollup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencil-community/unplugin-stencil/HEAD/src/rollup.ts -------------------------------------------------------------------------------- /src/rspack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencil-community/unplugin-stencil/HEAD/src/rspack.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencil-community/unplugin-stencil/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencil-community/unplugin-stencil/HEAD/src/utils.ts -------------------------------------------------------------------------------- /src/vite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencil-community/unplugin-stencil/HEAD/src/vite.ts -------------------------------------------------------------------------------- /src/webpack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencil-community/unplugin-stencil/HEAD/src/webpack.ts -------------------------------------------------------------------------------- /test/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencil-community/unplugin-stencil/HEAD/test/utils.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencil-community/unplugin-stencil/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencil-community/unplugin-stencil/HEAD/tsup.config.ts -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencil-community/unplugin-stencil/HEAD/vitest.config.ts --------------------------------------------------------------------------------