├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── CHANGELOG.md ├── LICENSE ├── README.md ├── package.json ├── pnpm-lock.yaml ├── src ├── constants.js ├── index.d.ts └── index.js ├── tests ├── Input.svelte ├── Output.svelte └── index.js └── tsconfig.json /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluwy/svelte-preprocess-import-assets/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | tests/*.svelte -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluwy/svelte-preprocess-import-assets/HEAD/.prettierrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluwy/svelte-preprocess-import-assets/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluwy/svelte-preprocess-import-assets/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluwy/svelte-preprocess-import-assets/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluwy/svelte-preprocess-import-assets/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluwy/svelte-preprocess-import-assets/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluwy/svelte-preprocess-import-assets/HEAD/src/constants.js -------------------------------------------------------------------------------- /src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluwy/svelte-preprocess-import-assets/HEAD/src/index.d.ts -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluwy/svelte-preprocess-import-assets/HEAD/src/index.js -------------------------------------------------------------------------------- /tests/Input.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluwy/svelte-preprocess-import-assets/HEAD/tests/Input.svelte -------------------------------------------------------------------------------- /tests/Output.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluwy/svelte-preprocess-import-assets/HEAD/tests/Output.svelte -------------------------------------------------------------------------------- /tests/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluwy/svelte-preprocess-import-assets/HEAD/tests/index.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluwy/svelte-preprocess-import-assets/HEAD/tsconfig.json --------------------------------------------------------------------------------