@qwik.dev/core 2.0.0-beta.7 → 2.0.0-beta.9

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.
Files changed (46) hide show
  1. package/bindings/qwik.darwin-arm64.node +0 -0
  2. package/bindings/qwik.darwin-x64.node +0 -0
  3. package/bindings/qwik.linux-x64-gnu.node +0 -0
  4. package/bindings/qwik.win32-x64-msvc.node +0 -0
  5. package/bindings/qwik_wasm_bg.wasm +0 -0
  6. package/dist/backpatch/index.cjs +6 -0
  7. package/dist/backpatch/index.d.ts +2 -0
  8. package/dist/backpatch/index.mjs +5 -0
  9. package/dist/backpatch/package.json +8 -0
  10. package/dist/backpatch-executor.debug.js +34 -0
  11. package/dist/backpatch-executor.js +1 -0
  12. package/dist/build/package.json +1 -1
  13. package/dist/cli.cjs +17 -17
  14. package/dist/core-internal.d.ts +112 -56
  15. package/dist/core.cjs +1022 -469
  16. package/dist/core.cjs.map +1 -1
  17. package/dist/core.min.mjs +1 -1
  18. package/dist/core.mjs +1018 -469
  19. package/dist/core.mjs.map +1 -1
  20. package/dist/core.prod.cjs +654 -361
  21. package/dist/core.prod.mjs +729 -373
  22. package/dist/loader/index.cjs +2 -2
  23. package/dist/loader/index.mjs +2 -2
  24. package/dist/loader/package.json +1 -1
  25. package/dist/optimizer.cjs +78 -76
  26. package/dist/optimizer.mjs +78 -78
  27. package/dist/qwikloader.debug.js +0 -13
  28. package/dist/qwikloader.js +1 -1
  29. package/dist/server.cjs +217 -63
  30. package/dist/server.d.ts +9 -0
  31. package/dist/server.mjs +213 -63
  32. package/dist/starters/features/auth/package.json +1 -1
  33. package/dist/starters/features/localize/package.json +3 -3
  34. package/dist/starters/features/pandacss/package.json +1 -1
  35. package/dist/starters/features/playwright/playwright-report/index.html +943 -903
  36. package/dist/starters/features/postcss/postcss.config.js +1 -1
  37. package/dist/starters/features/tailwind/package.json +2 -2
  38. package/dist/starters/features/tailwind/prettier.config.js +10 -0
  39. package/dist/starters/features/tailwind-v3/package.json +1 -1
  40. package/dist/starters/features/tailwind-v3/prettier.config.js +10 -0
  41. package/dist/testing/index.cjs +3826 -952
  42. package/dist/testing/index.d.ts +972 -1
  43. package/dist/testing/index.mjs +3811 -946
  44. package/dist/testing/package.json +1 -1
  45. package/package.json +8 -6
  46. package/dist/starters/features/tailwind/.prettierrc.js +0 -3
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qwik.dev/core/testing",
3
- "version": "2.0.0-beta.7-dev+2dd89a6",
3
+ "version": "2.0.0-beta.9-dev+6b582c7",
4
4
  "main": "index.mjs",
5
5
  "types": "index.d.ts",
6
6
  "private": true,
package/package.json CHANGED
@@ -1,24 +1,24 @@
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.7",
4
+ "version": "2.0.0-beta.9",
5
5
  "author": "Qwik Team",
6
6
  "bin": {
7
7
  "qwik": "./qwik-cli.cjs"
8
8
  },
9
9
  "bugs": "https://github.com/QwikDev/qwik/issues",
10
10
  "dependencies": {
11
- "csstype": "^3.1",
12
- "rollup": "^4.44.0"
11
+ "csstype": "^3.1.3",
12
+ "rollup": ">= ^4.44.0"
13
13
  },
14
14
  "devDependencies": {
15
15
  "ignore": "5.3.1",
16
16
  "image-size": "1.1.1",
17
17
  "kleur": "4.1.5",
18
- "prettier": "3.5.3",
18
+ "prettier": "3.6.2",
19
19
  "ts-morph": "23.0.0",
20
20
  "vitest": "3.2.4",
21
- "@qwik.dev/core": "2.0.0-beta.7",
21
+ "@qwik.dev/core": "2.0.0-beta.9",
22
22
  "@qwik.dev/dom": "2.1.19"
23
23
  },
24
24
  "engines": {
@@ -138,6 +138,8 @@
138
138
  },
139
139
  "./qwikloader.js": "./dist/qwikloader.js",
140
140
  "./qwikloader.debug.js": "./dist/qwikloader.debug.js",
141
+ "./backpatch-executor.js": "./dist/backpatch-executor.js",
142
+ "./backpatch-executor.debug.js": "./dist/backpatch-executor.debug.js",
141
143
  "./package.json": "./package.json"
142
144
  },
143
145
  "exports_annotation": "We use the build for the optimizer because esbuild doesn't like the html?raw imports in the server plugin and it's only used in the vite configs",
@@ -182,7 +184,7 @@
182
184
  "peerDependencies": {
183
185
  "prettier": "*",
184
186
  "vite": ">=5 <8",
185
- "vitest": ">=2 <3"
187
+ "vitest": ">=2 <4"
186
188
  },
187
189
  "peerDependenciesMeta": {
188
190
  "vitest": {
@@ -1,3 +0,0 @@
1
- export default {
2
- plugins: ['prettier-plugin-tailwindcss'],
3
- }