├── .editorconfig ├── .gitignore ├── README.md ├── demo ├── .astro │ └── settings.json ├── README.md ├── astro.config.js ├── package.json ├── public │ └── favicon.svg ├── src │ ├── env.d.ts │ ├── pages │ │ └── index.astro │ └── scripts │ │ ├── client.ts │ │ └── worker.ts └── tsconfig.json ├── package.json ├── packages └── worker │ ├── LICENSE.md │ ├── README.md │ ├── implementation.js │ ├── integration.d.ts │ ├── integration.js │ ├── package.json │ ├── polyfill.d.ts │ └── polyfill.js └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-community/worker/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-community/worker/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-community/worker/HEAD/README.md -------------------------------------------------------------------------------- /demo/.astro/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "devToolbar": { 3 | "enabled": false 4 | } 5 | } -------------------------------------------------------------------------------- /demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-community/worker/HEAD/demo/README.md -------------------------------------------------------------------------------- /demo/astro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-community/worker/HEAD/demo/astro.config.js -------------------------------------------------------------------------------- /demo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-community/worker/HEAD/demo/package.json -------------------------------------------------------------------------------- /demo/public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-community/worker/HEAD/demo/public/favicon.svg -------------------------------------------------------------------------------- /demo/src/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-community/worker/HEAD/demo/src/env.d.ts -------------------------------------------------------------------------------- /demo/src/pages/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-community/worker/HEAD/demo/src/pages/index.astro -------------------------------------------------------------------------------- /demo/src/scripts/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-community/worker/HEAD/demo/src/scripts/client.ts -------------------------------------------------------------------------------- /demo/src/scripts/worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-community/worker/HEAD/demo/src/scripts/worker.ts -------------------------------------------------------------------------------- /demo/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-community/worker/HEAD/demo/tsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-community/worker/HEAD/package.json -------------------------------------------------------------------------------- /packages/worker/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-community/worker/HEAD/packages/worker/LICENSE.md -------------------------------------------------------------------------------- /packages/worker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-community/worker/HEAD/packages/worker/README.md -------------------------------------------------------------------------------- /packages/worker/implementation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-community/worker/HEAD/packages/worker/implementation.js -------------------------------------------------------------------------------- /packages/worker/integration.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-community/worker/HEAD/packages/worker/integration.d.ts -------------------------------------------------------------------------------- /packages/worker/integration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-community/worker/HEAD/packages/worker/integration.js -------------------------------------------------------------------------------- /packages/worker/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-community/worker/HEAD/packages/worker/package.json -------------------------------------------------------------------------------- /packages/worker/polyfill.d.ts: -------------------------------------------------------------------------------- 1 | export { } 2 | -------------------------------------------------------------------------------- /packages/worker/polyfill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-community/worker/HEAD/packages/worker/polyfill.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astro-community/worker/HEAD/tsconfig.json --------------------------------------------------------------------------------