mirror of
https://github.com/FranP-code/create-better-t-stack.git
synced 2025-10-12 23:52:15 +00:00
Fix self-closing div tag syntax in client template
This commit is contained in:
5
.changeset/brown-glasses-admire.md
Normal file
5
.changeset/brown-glasses-admire.md
Normal file
@@ -0,0 +1,5 @@
|
||||
---
|
||||
"create-better-t-stack": patch
|
||||
---
|
||||
|
||||
Fix self-closing div tag syntax in client template
|
||||
2
.github/workflows/main.yaml
vendored
2
.github/workflows/main.yaml
vendored
@@ -11,4 +11,4 @@ jobs:
|
||||
with:
|
||||
bun-version: latest
|
||||
- run: bun install --frozen-lockfile
|
||||
- run: bun run check
|
||||
- run: bun run ci
|
||||
|
||||
@@ -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",
|
||||
|
||||
@@ -67,7 +67,7 @@ function HomeComponent() {
|
||||
/>
|
||||
</ul>
|
||||
</section>
|
||||
<div id="buttons"></div>
|
||||
<div id="buttons" />
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
|
||||
@@ -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": {
|
||||
|
||||
Reference in New Issue
Block a user