├── .changeset ├── README.md └── config.json ├── .gitignore ├── .prettierignore ├── .prettierrc.yaml ├── .vscode └── settings.json ├── CONTRIBUTING.md ├── README.md ├── cli ├── CHANGELOG.md ├── README.md ├── index.ts ├── package.json ├── pnpm-lock.yaml ├── src │ └── main.civet ├── tsconfig.json └── vite.config.ts ├── examples ├── astro-vanilla-extract │ ├── .gitignore │ ├── .vscode │ │ ├── extensions.json │ │ ├── launch.json │ │ └── settings.json │ ├── CHANGELOG.md │ ├── README.md │ ├── astro.config.ts │ ├── package.json │ ├── public │ │ └── favicon.svg │ ├── src │ │ ├── env.d.ts │ │ ├── layouts │ │ │ └── Layout.astro │ │ ├── pages │ │ │ └── index.astro │ │ └── style │ │ │ └── index.css.civet │ └── tsconfig.json ├── basic │ ├── .vscode │ │ └── settings.json │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── src │ │ ├── index.civet │ │ ├── index.test.civet │ │ ├── index.test.ts │ │ └── index.ts │ ├── tsconfig.json │ └── vite.config.ts └── solid-component-lib │ ├── .vscode │ └── settings.json │ ├── CHANGELOG.md │ ├── README.md │ ├── index.html │ ├── package.json │ ├── src │ ├── components │ │ ├── Counter.civet │ │ └── Counter.tsx │ ├── dev │ │ ├── App.civet │ │ ├── App.tsx │ │ ├── main.civet │ │ └── main.tsx │ ├── index.civet │ ├── index.tsx │ └── vite-env.d.ts │ ├── tsconfig.json │ └── vite.config.ts ├── package.json ├── pnpm-lock.yaml └── pnpm-workspace.yaml /.changeset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arstnei0/civetman/HEAD/.changeset/README.md -------------------------------------------------------------------------------- /.changeset/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arstnei0/civetman/HEAD/.changeset/config.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arstnei0/civetman/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | dist 2 | node_modules 3 | pnpm-lock.yaml 4 | coverage 5 | -------------------------------------------------------------------------------- /.prettierrc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arstnei0/civetman/HEAD/.prettierrc.yaml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arstnei0/civetman/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arstnei0/civetman/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arstnei0/civetman/HEAD/README.md -------------------------------------------------------------------------------- /cli/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arstnei0/civetman/HEAD/cli/CHANGELOG.md -------------------------------------------------------------------------------- /cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arstnei0/civetman/HEAD/cli/README.md -------------------------------------------------------------------------------- /cli/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arstnei0/civetman/HEAD/cli/index.ts -------------------------------------------------------------------------------- /cli/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arstnei0/civetman/HEAD/cli/package.json -------------------------------------------------------------------------------- /cli/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arstnei0/civetman/HEAD/cli/pnpm-lock.yaml -------------------------------------------------------------------------------- /cli/src/main.civet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arstnei0/civetman/HEAD/cli/src/main.civet -------------------------------------------------------------------------------- /cli/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arstnei0/civetman/HEAD/cli/tsconfig.json -------------------------------------------------------------------------------- /cli/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arstnei0/civetman/HEAD/cli/vite.config.ts -------------------------------------------------------------------------------- /examples/astro-vanilla-extract/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arstnei0/civetman/HEAD/examples/astro-vanilla-extract/.gitignore -------------------------------------------------------------------------------- /examples/astro-vanilla-extract/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arstnei0/civetman/HEAD/examples/astro-vanilla-extract/.vscode/extensions.json -------------------------------------------------------------------------------- /examples/astro-vanilla-extract/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arstnei0/civetman/HEAD/examples/astro-vanilla-extract/.vscode/launch.json -------------------------------------------------------------------------------- /examples/astro-vanilla-extract/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arstnei0/civetman/HEAD/examples/astro-vanilla-extract/.vscode/settings.json -------------------------------------------------------------------------------- /examples/astro-vanilla-extract/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arstnei0/civetman/HEAD/examples/astro-vanilla-extract/CHANGELOG.md -------------------------------------------------------------------------------- /examples/astro-vanilla-extract/README.md: -------------------------------------------------------------------------------- 1 | # Civetman example with Vanilla Extract 2 | -------------------------------------------------------------------------------- /examples/astro-vanilla-extract/astro.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arstnei0/civetman/HEAD/examples/astro-vanilla-extract/astro.config.ts -------------------------------------------------------------------------------- /examples/astro-vanilla-extract/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arstnei0/civetman/HEAD/examples/astro-vanilla-extract/package.json -------------------------------------------------------------------------------- /examples/astro-vanilla-extract/public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arstnei0/civetman/HEAD/examples/astro-vanilla-extract/public/favicon.svg -------------------------------------------------------------------------------- /examples/astro-vanilla-extract/src/env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /examples/astro-vanilla-extract/src/layouts/Layout.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arstnei0/civetman/HEAD/examples/astro-vanilla-extract/src/layouts/Layout.astro -------------------------------------------------------------------------------- /examples/astro-vanilla-extract/src/pages/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arstnei0/civetman/HEAD/examples/astro-vanilla-extract/src/pages/index.astro -------------------------------------------------------------------------------- /examples/astro-vanilla-extract/src/style/index.css.civet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arstnei0/civetman/HEAD/examples/astro-vanilla-extract/src/style/index.css.civet -------------------------------------------------------------------------------- /examples/astro-vanilla-extract/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "astro/tsconfigs/strict" 3 | } -------------------------------------------------------------------------------- /examples/basic/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arstnei0/civetman/HEAD/examples/basic/.vscode/settings.json -------------------------------------------------------------------------------- /examples/basic/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arstnei0/civetman/HEAD/examples/basic/CHANGELOG.md -------------------------------------------------------------------------------- /examples/basic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arstnei0/civetman/HEAD/examples/basic/README.md -------------------------------------------------------------------------------- /examples/basic/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arstnei0/civetman/HEAD/examples/basic/package.json -------------------------------------------------------------------------------- /examples/basic/src/index.civet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arstnei0/civetman/HEAD/examples/basic/src/index.civet -------------------------------------------------------------------------------- /examples/basic/src/index.test.civet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arstnei0/civetman/HEAD/examples/basic/src/index.test.civet -------------------------------------------------------------------------------- /examples/basic/src/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arstnei0/civetman/HEAD/examples/basic/src/index.test.ts -------------------------------------------------------------------------------- /examples/basic/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arstnei0/civetman/HEAD/examples/basic/src/index.ts -------------------------------------------------------------------------------- /examples/basic/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arstnei0/civetman/HEAD/examples/basic/tsconfig.json -------------------------------------------------------------------------------- /examples/basic/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arstnei0/civetman/HEAD/examples/basic/vite.config.ts -------------------------------------------------------------------------------- /examples/solid-component-lib/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arstnei0/civetman/HEAD/examples/solid-component-lib/.vscode/settings.json -------------------------------------------------------------------------------- /examples/solid-component-lib/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arstnei0/civetman/HEAD/examples/solid-component-lib/CHANGELOG.md -------------------------------------------------------------------------------- /examples/solid-component-lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arstnei0/civetman/HEAD/examples/solid-component-lib/README.md -------------------------------------------------------------------------------- /examples/solid-component-lib/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arstnei0/civetman/HEAD/examples/solid-component-lib/index.html -------------------------------------------------------------------------------- /examples/solid-component-lib/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arstnei0/civetman/HEAD/examples/solid-component-lib/package.json -------------------------------------------------------------------------------- /examples/solid-component-lib/src/components/Counter.civet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arstnei0/civetman/HEAD/examples/solid-component-lib/src/components/Counter.civet -------------------------------------------------------------------------------- /examples/solid-component-lib/src/components/Counter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arstnei0/civetman/HEAD/examples/solid-component-lib/src/components/Counter.tsx -------------------------------------------------------------------------------- /examples/solid-component-lib/src/dev/App.civet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arstnei0/civetman/HEAD/examples/solid-component-lib/src/dev/App.civet -------------------------------------------------------------------------------- /examples/solid-component-lib/src/dev/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arstnei0/civetman/HEAD/examples/solid-component-lib/src/dev/App.tsx -------------------------------------------------------------------------------- /examples/solid-component-lib/src/dev/main.civet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arstnei0/civetman/HEAD/examples/solid-component-lib/src/dev/main.civet -------------------------------------------------------------------------------- /examples/solid-component-lib/src/dev/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arstnei0/civetman/HEAD/examples/solid-component-lib/src/dev/main.tsx -------------------------------------------------------------------------------- /examples/solid-component-lib/src/index.civet: -------------------------------------------------------------------------------- 1 | export * from "./components/Counter" 2 | -------------------------------------------------------------------------------- /examples/solid-component-lib/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arstnei0/civetman/HEAD/examples/solid-component-lib/src/index.tsx -------------------------------------------------------------------------------- /examples/solid-component-lib/src/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arstnei0/civetman/HEAD/examples/solid-component-lib/src/vite-env.d.ts -------------------------------------------------------------------------------- /examples/solid-component-lib/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arstnei0/civetman/HEAD/examples/solid-component-lib/tsconfig.json -------------------------------------------------------------------------------- /examples/solid-component-lib/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arstnei0/civetman/HEAD/examples/solid-component-lib/vite.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arstnei0/civetman/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arstnei0/civetman/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arstnei0/civetman/HEAD/pnpm-workspace.yaml --------------------------------------------------------------------------------