@qwik.dev/core 2.0.0-beta.27 → 2.0.0-beta.28

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -18,6 +18,10 @@
18
18
 
19
19
  /** This renders your application */
20
20
  render(document.querySelector("#root"), jsx(Root));
21
+
22
+ if (isDev) {
23
+ import("/@id/@qwik-hmr-bridge");
24
+ }
21
25
  </script>
22
26
  </body>
23
27
  </html>
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * @qwik.dev/core/testing 2.0.0-beta.27-dev+7fc6984
3
+ * @qwik.dev/core/testing 2.0.0-beta.28-dev+fac55b7
4
4
  * Copyright QwikDev. All Rights Reserved.
5
5
  * Use of this source code is governed by an MIT-style license that can be
6
6
  * found in the LICENSE file at https://github.com/QwikDev/qwik/blob/main/LICENSE
@@ -30166,7 +30166,7 @@ var makeResolveFunction = (qrl, symbolFn) => {
30166
30166
  symbol
30167
30167
  );
30168
30168
  symbolRef = maybeThen(importP, (resolved) => {
30169
- if (symbolFn) {
30169
+ if (!isDev19 && symbolFn) {
30170
30170
  symbolFn[symbol] = resolved;
30171
30171
  }
30172
30172
  return symbolRef = qrl.resolved = bindCaptures(qrl, resolved);
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qwik.dev/core/testing",
3
- "version": "2.0.0-beta.27-dev+7fc6984",
3
+ "version": "2.0.0-beta.28-dev+fac55b7",
4
4
  "main": "index.mjs",
5
5
  "types": "index.d.ts",
6
6
  "private": true,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@qwik.dev/core",
3
3
  "description": "An open source framework for building instant loading web apps at any scale, without the extra effort.",
4
- "version": "2.0.0-beta.27",
4
+ "version": "2.0.0-beta.28",
5
5
  "author": "Qwik Team",
6
6
  "bin": {
7
7
  "qwik": "./qwik-cli.mjs"
@@ -20,8 +20,8 @@
20
20
  "image-size": "1.2.1",
21
21
  "kleur": "4.1.5",
22
22
  "prettier": "3.7.4",
23
- "vitest": "4.0.16",
24
- "@qwik.dev/core": "2.0.0-beta.27",
23
+ "vitest": "4.0.18",
24
+ "@qwik.dev/core": "2.0.0-beta.28",
25
25
  "@qwik.dev/dom": "2.1.19"
26
26
  },
27
27
  "engines": {
@@ -156,7 +156,7 @@
156
156
  "main": "./src/index.ts",
157
157
  "peerDependencies": {
158
158
  "prettier": "3.6.2",
159
- "vite": ">=5 <8",
159
+ "vite": ">=6 <9",
160
160
  "vitest": ">=2 <4"
161
161
  },
162
162
  "peerDependenciesMeta": {