├── .eslintrc.js ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── astro-uno ├── .release-it.json ├── package.json ├── src │ └── index.ts ├── tsconfig.client.json └── tsconfig.json ├── example ├── .gitignore ├── .npmrc ├── astro.config.mjs ├── package.json ├── public │ └── favicon.ico ├── src │ └── pages │ │ └── index.astro └── tsconfig.json ├── package.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml └── tsconfig.json /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanChain/astro-uno/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanChain/astro-uno/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanChain/astro-uno/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanChain/astro-uno/HEAD/README.md -------------------------------------------------------------------------------- /astro-uno/.release-it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanChain/astro-uno/HEAD/astro-uno/.release-it.json -------------------------------------------------------------------------------- /astro-uno/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanChain/astro-uno/HEAD/astro-uno/package.json -------------------------------------------------------------------------------- /astro-uno/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanChain/astro-uno/HEAD/astro-uno/src/index.ts -------------------------------------------------------------------------------- /astro-uno/tsconfig.client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanChain/astro-uno/HEAD/astro-uno/tsconfig.client.json -------------------------------------------------------------------------------- /astro-uno/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanChain/astro-uno/HEAD/astro-uno/tsconfig.json -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanChain/astro-uno/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/.npmrc: -------------------------------------------------------------------------------- 1 | # Expose Astro dependencies for `pnpm` users 2 | shamefully-hoist=true 3 | -------------------------------------------------------------------------------- /example/astro.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanChain/astro-uno/HEAD/example/astro.config.mjs -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanChain/astro-uno/HEAD/example/package.json -------------------------------------------------------------------------------- /example/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanChain/astro-uno/HEAD/example/public/favicon.ico -------------------------------------------------------------------------------- /example/src/pages/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanChain/astro-uno/HEAD/example/src/pages/index.astro -------------------------------------------------------------------------------- /example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanChain/astro-uno/HEAD/example/tsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanChain/astro-uno/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanChain/astro-uno/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanChain/astro-uno/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanChain/astro-uno/HEAD/tsconfig.json --------------------------------------------------------------------------------