├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── CHANGELOG.md ├── LICENSE ├── README.md ├── package.json ├── playground ├── compile │ ├── .gitignore │ ├── README.md │ ├── index.js │ └── package.json ├── rollup │ ├── README.md │ ├── package.json │ ├── public │ │ ├── favicon.png │ │ └── index.html │ ├── rollup.config.js │ └── src │ │ ├── App.svelte │ │ └── main.js └── vite │ ├── README.md │ ├── index.html │ ├── jsconfig.json │ ├── package.json │ ├── public │ └── favicon.ico │ ├── src │ ├── App.svelte │ ├── main.js │ └── vite-env.d.ts │ └── vite.config.js ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── src ├── action.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-fast-dimension/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | build 3 | dist -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | build 3 | dist 4 | tests/*.svelte -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluwy/svelte-fast-dimension/HEAD/.prettierrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluwy/svelte-fast-dimension/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluwy/svelte-fast-dimension/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluwy/svelte-fast-dimension/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluwy/svelte-fast-dimension/HEAD/package.json -------------------------------------------------------------------------------- /playground/compile/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluwy/svelte-fast-dimension/HEAD/playground/compile/.gitignore -------------------------------------------------------------------------------- /playground/compile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluwy/svelte-fast-dimension/HEAD/playground/compile/README.md -------------------------------------------------------------------------------- /playground/compile/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluwy/svelte-fast-dimension/HEAD/playground/compile/index.js -------------------------------------------------------------------------------- /playground/compile/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluwy/svelte-fast-dimension/HEAD/playground/compile/package.json -------------------------------------------------------------------------------- /playground/rollup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluwy/svelte-fast-dimension/HEAD/playground/rollup/README.md -------------------------------------------------------------------------------- /playground/rollup/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluwy/svelte-fast-dimension/HEAD/playground/rollup/package.json -------------------------------------------------------------------------------- /playground/rollup/public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluwy/svelte-fast-dimension/HEAD/playground/rollup/public/favicon.png -------------------------------------------------------------------------------- /playground/rollup/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluwy/svelte-fast-dimension/HEAD/playground/rollup/public/index.html -------------------------------------------------------------------------------- /playground/rollup/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluwy/svelte-fast-dimension/HEAD/playground/rollup/rollup.config.js -------------------------------------------------------------------------------- /playground/rollup/src/App.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluwy/svelte-fast-dimension/HEAD/playground/rollup/src/App.svelte -------------------------------------------------------------------------------- /playground/rollup/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluwy/svelte-fast-dimension/HEAD/playground/rollup/src/main.js -------------------------------------------------------------------------------- /playground/vite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluwy/svelte-fast-dimension/HEAD/playground/vite/README.md -------------------------------------------------------------------------------- /playground/vite/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluwy/svelte-fast-dimension/HEAD/playground/vite/index.html -------------------------------------------------------------------------------- /playground/vite/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluwy/svelte-fast-dimension/HEAD/playground/vite/jsconfig.json -------------------------------------------------------------------------------- /playground/vite/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluwy/svelte-fast-dimension/HEAD/playground/vite/package.json -------------------------------------------------------------------------------- /playground/vite/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluwy/svelte-fast-dimension/HEAD/playground/vite/public/favicon.ico -------------------------------------------------------------------------------- /playground/vite/src/App.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluwy/svelte-fast-dimension/HEAD/playground/vite/src/App.svelte -------------------------------------------------------------------------------- /playground/vite/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluwy/svelte-fast-dimension/HEAD/playground/vite/src/main.js -------------------------------------------------------------------------------- /playground/vite/src/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluwy/svelte-fast-dimension/HEAD/playground/vite/src/vite-env.d.ts -------------------------------------------------------------------------------- /playground/vite/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluwy/svelte-fast-dimension/HEAD/playground/vite/vite.config.js -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluwy/svelte-fast-dimension/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- 1 | packages: 2 | - 'playground/*' 3 | -------------------------------------------------------------------------------- /src/action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluwy/svelte-fast-dimension/HEAD/src/action.js -------------------------------------------------------------------------------- /src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluwy/svelte-fast-dimension/HEAD/src/index.d.ts -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluwy/svelte-fast-dimension/HEAD/src/index.js -------------------------------------------------------------------------------- /tests/Input.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluwy/svelte-fast-dimension/HEAD/tests/Input.svelte -------------------------------------------------------------------------------- /tests/Output.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluwy/svelte-fast-dimension/HEAD/tests/Output.svelte -------------------------------------------------------------------------------- /tests/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluwy/svelte-fast-dimension/HEAD/tests/index.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluwy/svelte-fast-dimension/HEAD/tsconfig.json --------------------------------------------------------------------------------