├── .gitignore ├── LICENSE ├── README.md ├── dist ├── README.md ├── babel.d.ts ├── babel.js ├── chunk-UJTTZJ64.js ├── index.d.ts ├── index.js └── package.json ├── package.json ├── pnpm-lock.yaml ├── src ├── babel.ts ├── global.d.ts └── index.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode/* 2 | node_modules/* -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhubbardsf/vite-plugin-svelte-console-remover/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhubbardsf/vite-plugin-svelte-console-remover/HEAD/README.md -------------------------------------------------------------------------------- /dist/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhubbardsf/vite-plugin-svelte-console-remover/HEAD/dist/README.md -------------------------------------------------------------------------------- /dist/babel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhubbardsf/vite-plugin-svelte-console-remover/HEAD/dist/babel.d.ts -------------------------------------------------------------------------------- /dist/babel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhubbardsf/vite-plugin-svelte-console-remover/HEAD/dist/babel.js -------------------------------------------------------------------------------- /dist/chunk-UJTTZJ64.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhubbardsf/vite-plugin-svelte-console-remover/HEAD/dist/chunk-UJTTZJ64.js -------------------------------------------------------------------------------- /dist/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhubbardsf/vite-plugin-svelte-console-remover/HEAD/dist/index.d.ts -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhubbardsf/vite-plugin-svelte-console-remover/HEAD/dist/index.js -------------------------------------------------------------------------------- /dist/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhubbardsf/vite-plugin-svelte-console-remover/HEAD/dist/package.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhubbardsf/vite-plugin-svelte-console-remover/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhubbardsf/vite-plugin-svelte-console-remover/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/babel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhubbardsf/vite-plugin-svelte-console-remover/HEAD/src/babel.ts -------------------------------------------------------------------------------- /src/global.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'babel-plugin-transform-remove-console'; -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhubbardsf/vite-plugin-svelte-console-remover/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhubbardsf/vite-plugin-svelte-console-remover/HEAD/tsconfig.json --------------------------------------------------------------------------------