Skip to content

Commit bbdb967

Browse files
committed
Merge remote-tracking branch 'upstream/main' into supabase-ssr
2 parents 8ef3aef + adf20ca commit bbdb967

File tree

158 files changed

+2407
-689
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

158 files changed

+2407
-689
lines changed

.changeset/easy-boxes-win.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
'create-qwik': patch
3+
---
4+
5+
fix: create-qwik logAppCreated.ts now displays correct next steps for deno.
6+
7+
After using the create-qwik command, the logAppCreated.ts file was not displaying the correct next steps for deno. Prior to this fix it would display "deno start" instead of "deno task start". This would cause a failure to run, as deno requires the 'task' keyword. This fixes bug 7520

.changeset/fair-cars-fry.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export default function (opts: RenderToStreamOptions) {
4343
// Enable debug logging for preload operations
4444
debug: true,
4545
// Maximum simultaneous preload links
46-
maxBufferedPreloads: 5,
46+
maxIdlePreloads: 5,
4747
// Minimum probability threshold for preloading
4848
preloadProbability: 0.25
4949
// ...and more, see the type JSDoc on hover

.changeset/thick-trams-pay.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@builder.io/qwik-city': patch
3+
---
4+
5+
🩹 Link SPA subsequent navigation now properly prefetch the next routes.

.github/assets/qwik-logo.svg

Lines changed: 0 additions & 1 deletion
This file was deleted.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<br>
22
<p align="center">
3-
<img alt="Qwik Logo" width="400" src="https://raw.githubusercontent.com/QwikDev/qwik/main/.github/assets/qwik-logo.svg" />
3+
<img alt="Qwik Logo" width="400" src="https://raw.githubusercontent.com/QwikDev/qwik/main/packages/docs/public/logos/qwik.svg" />
44
</p>
55
<br>
66
<p align="center">

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,7 @@
125125
"@types/semver": "7.5.8",
126126
"@types/tmp": "0.2.6",
127127
"@types/which-pm-runs": "1.0.2",
128+
"@vitejs/plugin-basic-ssl": "2.0.0",
128129
"all-contributors-cli": "6.26.1",
129130
"brotli": "1.3.3",
130131
"concurrently": "8.2.2",
@@ -182,8 +183,7 @@
182183
"pnpm": {
183184
"overrides": {
184185
"typescript": "5.4.5",
185-
"vfile": "6.0.2",
186-
"@supabase/realtime-js": "2.8.4"
186+
"vfile": "6.0.2"
187187
},
188188
"patchedDependencies": {
189189

packages/create-qwik/src/helpers/logAppCreated.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,11 @@ export function logAppCreated(pkgManager: string, result: CreateAppResult, ranIn
4040
if (!ranInstall) {
4141
outString.push(` ${pkgManager} install`);
4242
}
43-
outString.push(` ${pkgManager} start`);
43+
if (pkgManager === 'deno') {
44+
outString.push(` deno task start`);
45+
} else {
46+
outString.push(` ${pkgManager} start`);
47+
}
4448
outString.push(``);
4549

4650
note(outString.join('\n'), 'Result');

packages/docs/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
"@builder.io/qwik-city": "workspace:^",
1313
"@builder.io/qwik-labs": "workspace:^",
1414
"@builder.io/qwik-react": "workspace:^",
15-
"@builder.io/sdk-qwik": "0.14.31",
1615
"@emotion/react": "11.13.0",
1716
"@emotion/styled": "11.13.0",
1817
"@modular-forms/qwik": "0.23.1",
Lines changed: 4 additions & 4 deletions
Loading

packages/docs/public/logos/qwik.svg

Lines changed: 18 additions & 1 deletion
Loading

0 commit comments

Comments
 (0)