Skip to content

Commit d19c7ae

Browse files
authored
🎨 (#1046)
1 parent f8536d2 commit d19c7ae

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

‎packages/qwik-city/package.json‎

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@builder.io/qwik-city",
3-
"version": "0.0.100",
3+
"version": "0.0.101",
44
"description": "The meta-framework for Qwik.",
55
"main": "./lib/index.qwik.cjs",
66
"module": "./lib/index.qwik.mjs",
@@ -81,6 +81,7 @@
8181
"bugs": {
8282
"url": "https://github.com/BuilderIO/qwik/issues"
8383
},
84+
"private": true,
8485
"publishConfig": {
8586
"access": "public"
8687
}

‎starters/apps/qwik-city/package.json‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
},
1414
"type": "module",
1515
"devDependencies": {
16-
"@builder.io/qwik-city": "0.0.100",
16+
"@builder.io/qwik-city": "0.0.101",
1717
"vite-tsconfig-paths": "3.5.0"
1818
}
1919
}

‎starters/apps/qwik-city/src/components/footer/footer.tsx‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default component$(() => {
55
useStyles$(styles);
66

77
return (
8-
<div>
8+
<footer>
99
<ul>
1010
<li>
1111
<a href="/blog">Blog</a>
@@ -22,6 +22,6 @@ export default component$(() => {
2222
</a>
2323
</li>
2424
</ul>
25-
</div>
25+
</footer>
2626
);
2727
});

0 commit comments

Comments
 (0)