diff --git a/.changeset/brown-glasses-admire.md b/.changeset/brown-glasses-admire.md new file mode 100644 index 0000000..a8bf26e --- /dev/null +++ b/.changeset/brown-glasses-admire.md @@ -0,0 +1,5 @@ +--- +"create-better-t-stack": patch +--- + +Fix self-closing div tag syntax in client template diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 93e0fe0..2acc283 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -11,4 +11,4 @@ jobs: with: bun-version: latest - run: bun install --frozen-lockfile - - run: bun run check + - run: bun run ci diff --git a/apps/cli/package.json b/apps/cli/package.json index 54afeca..eb2fc47 100644 --- a/apps/cli/package.json +++ b/apps/cli/package.json @@ -22,10 +22,7 @@ "test": "vitest run", "prepublishOnly": "npm run build" }, - "files": [ - "dist", - "template" - ], + "files": ["dist", "template"], "dependencies": { "@clack/prompts": "^0.10.0", "commander": "^13.1.0", diff --git a/apps/cli/template/base/apps/client/src/routes/index.tsx b/apps/cli/template/base/apps/client/src/routes/index.tsx index 0b91e39..0f29b9a 100644 --- a/apps/cli/template/base/apps/client/src/routes/index.tsx +++ b/apps/cli/template/base/apps/client/src/routes/index.tsx @@ -67,7 +67,7 @@ function HomeComponent() { /> -
+
); diff --git a/package.json b/package.json index 93b43d9..7664f23 100644 --- a/package.json +++ b/package.json @@ -11,6 +11,7 @@ "build:web:cloudflare": "bun install && bun run build:web", "build:cli": "turbo run build --filter=create-better-t-stack", "check": "turbo check", + "ci": "biome ci .", "publish-packages": "turbo run build --filter=create-better-t-stack && changeset publish" }, "devDependencies": {