Skip to content

Commit 2e822c1

Browse files
committed
Use bleeding edge qwik
1 parent e331f7b commit 2e822c1

34 files changed

Lines changed: 69 additions & 47 deletions

web/platform/astro.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import starlight from "@astrojs/starlight";
77

88
import partytown from "@astrojs/partytown";
99
import deno from "@deno/astro-adapter";
10-
import qwik from "@qwikdev/astro";
10+
import qwik from "@qwik.dev/astro";
1111
import tailwindcss from "@tailwindcss/vite";
1212

1313
import { rehypeMermaid } from "@beoe/rehype-mermaid"; // "rehype-mermaid";

web/platform/bun.lock

Lines changed: 32 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

web/platform/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,17 @@
1212
"@beoe/pan-zoom": "^0.0.4",
1313
"@beoe/rehype-mermaid": "^0.4.2",
1414
"@biomejs/biome": "1.9.4",
15-
"@builder.io/qwik": "^1.19.2",
1615
"@deno/astro-adapter": "https://github.com/florian-lefebvre/denoland_deno-astro-adapter/tarball/feat/v6",
1716
"@lhci/cli": "^0.14.0",
1817
"@lorenzo_lewis/starlight-utils": "^0.3.2",
19-
"@qwikdev/astro": "^0.8.3",
18+
"@qwik.dev/astro": "https://pkg.pr.new/QwikDev/astro/@qwik.dev/astro@279",
19+
"@qwik.dev/core": "2.0.0-beta.29",
2020
"@qwikest/icons": "^0.0.13",
2121
"@react-three/drei": "^10.0.7",
2222
"@react-three/fiber": "^9.1.2",
2323
"@tailwindcss/vite": "^4.2.1",
2424
"@types/bun": "^1.2.12",
25-
"astro": "^6.0.5",
25+
"astro": "^6.0.6",
2626
"clsx": "^2.1.1",
2727
"dotenv": "^17.0.0",
2828
"framer-motion": "^12.9.4",

web/platform/src/components/media/icons/contributors.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { PropsOf } from "@builder.io/qwik";
1+
import type { PropsOf } from "@qwik.dev/core";
22

33
export const Tesla = (props: PropsOf<"svg">, key: string) => {
44
return (

web/platform/src/components/media/icons/icons.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { PropsOf } from "@builder.io/qwik";
1+
import type { PropsOf } from "@qwik.dev/core";
22

33
export const Slack = (props: PropsOf<"svg">, key: string) => {
44
return (

web/platform/src/components/media/icons/productIcons.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { PropsOf } from "@builder.io/qwik";
1+
import type { PropsOf } from "@qwik.dev/core";
22

33
export const CAS = (props: PropsOf<"svg">, key: string) => {
44
return (

web/platform/src/components/qwik/components/book-banner.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { component$, useSignal, useVisibleTask$ } from "@builder.io/qwik";
1+
import { component$, useSignal, useVisibleTask$ } from "@qwik.dev/core";
22

33
export const BookBanner = component$(() => {
44
const isMinimized = useSignal(true);

web/platform/src/components/qwik/components/book-download-form.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { $, component$, useSignal } from "@builder.io/qwik";
1+
import { $, component$, useSignal } from "@qwik.dev/core";
22

33
const EMAIL_REGEX = /^[^\s@]+@[^\s@]+\.[^\s@]+$/;
44
const PERSONAL_EMAIL_DOMAINS = [

web/platform/src/components/qwik/components/cards.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
/** @jsxImportSource @builder.io/qwik */
2-
import { type JSXOutput, component$ } from "@builder.io/qwik";
1+
/** @jsxImportSource @qwik.dev/core */
2+
import { type JSXOutput, component$ } from "@qwik.dev/core";
33

44
import { LinearGradient } from "./text.tsx";
55

web/platform/src/components/qwik/components/codeTabs.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { component$, useSignal } from "@builder.io/qwik";
1+
import { component$, useSignal } from "@qwik.dev/core";
22

33
interface CodeTabsProps {
44
class: string;

0 commit comments

Comments
 (0)