@qwik.dev/core 2.0.0-alpha.5 → 2.0.0-alpha.7

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 (53) 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/build/package.json +1 -1
  7. package/dist/cli.cjs +65 -63
  8. package/dist/core-internal.d.ts +78 -77
  9. package/dist/core.cjs +1770 -1517
  10. package/dist/core.cjs.map +1 -1
  11. package/dist/core.min.mjs +1 -1
  12. package/dist/core.mjs +1768 -1517
  13. package/dist/core.mjs.map +1 -1
  14. package/dist/core.prod.cjs +985 -848
  15. package/dist/core.prod.mjs +1210 -1032
  16. package/dist/insights/index.qwik.cjs +3658 -160
  17. package/dist/insights/index.qwik.mjs +3658 -160
  18. package/dist/loader/index.cjs +2 -2
  19. package/dist/loader/index.mjs +2 -2
  20. package/dist/loader/package.json +1 -1
  21. package/dist/optimizer.cjs +230 -5691
  22. package/dist/optimizer.mjs +192 -5992
  23. package/dist/prefetch/package.json +1 -1
  24. package/dist/qwikloader.debug.js +12 -15
  25. package/dist/qwikloader.js +2 -2
  26. package/dist/server.cjs +754 -7067
  27. package/dist/server.mjs +771 -7062
  28. package/dist/starters/adapters/fastify/src/plugins/fastify-qwik.ts +2 -0
  29. package/dist/starters/features/cypress/package.json +1 -1
  30. package/dist/starters/features/drizzle/drizzle/schema.ts +6 -18
  31. package/dist/starters/features/drizzle/drizzle.config.ts +5 -4
  32. package/dist/starters/features/drizzle/package.json +14 -11
  33. package/dist/starters/features/pandacss/package.json +1 -1
  34. package/dist/starters/features/partytown/package.json +1 -1
  35. package/dist/starters/features/postcss/package.json +1 -1
  36. package/dist/starters/features/prisma/package.json +1 -1
  37. package/dist/starters/features/react/package.json +1 -1
  38. package/dist/starters/features/storybook/package.json +1 -1
  39. package/dist/starters/features/styled-vanilla-extract/package.json +2 -1
  40. package/dist/starters/features/tailwind/package.json +15 -9
  41. package/dist/starters/features/tailwind/src/global.css +1 -7
  42. package/dist/starters/features/turso/package.json +1 -1
  43. package/dist/starters/features/turso/src/utils/turso.ts +1 -1
  44. package/dist/starters/features/vitest/package.json +1 -1
  45. package/dist/testing/index.cjs +1445 -1252
  46. package/dist/testing/index.mjs +1455 -1256
  47. package/dist/testing/package.json +1 -1
  48. package/handlers.mjs +9 -0
  49. package/package.json +7 -5
  50. package/public.d.ts +2 -0
  51. package/dist/starters/features/tailwind/.vscode/settings.json +0 -3
  52. package/dist/starters/features/tailwind/postcss.config.cjs +0 -6
  53. package/dist/starters/features/tailwind/tailwind.config.js +0 -8
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qwik.dev/core/testing",
3
- "version": "2.0.0-alpha.5-dev+cb53bbd",
3
+ "version": "2.0.0-alpha.7-dev+a26598a",
4
4
  "main": "index.mjs",
5
5
  "types": "index.d.ts",
6
6
  "private": true,
package/handlers.mjs ADDED
@@ -0,0 +1,9 @@
1
+ /**
2
+ * This re-exports the QRL handlers so that they can be used as QRLs.
3
+ *
4
+ * In vite dev mode, this file is referenced directly. This ensures that the correct path to core is
5
+ * used so that there's only one instance of Qwik.
6
+ *
7
+ * Make sure that these handlers are listed in manifest.ts
8
+ */
9
+ export { _run, _task } from '@qwik.dev/core';
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-alpha.5",
4
+ "version": "2.0.0-alpha.7",
5
5
  "author": "Qwik Team",
6
6
  "bin": {
7
7
  "qwik": "./qwik-cli.cjs"
@@ -11,13 +11,13 @@
11
11
  "csstype": "^3.1"
12
12
  },
13
13
  "devDependencies": {
14
+ "ignore": "5.3.1",
14
15
  "image-size": "1.1.1",
15
16
  "kleur": "4.1.5",
16
- "ignore": "5.3.1",
17
- "prettier": "3.3.3",
17
+ "prettier": "3.4.2",
18
18
  "ts-morph": "23.0.0",
19
19
  "vitest": "2.1.4",
20
- "@qwik.dev/core": "2.0.0-alpha.5",
20
+ "@qwik.dev/core": "2.0.0-alpha.7",
21
21
  "@qwik.dev/dom": "2.1.19"
22
22
  },
23
23
  "engines": {
@@ -41,8 +41,9 @@
41
41
  "./cli": {
42
42
  "require": "./dist/cli.cjs"
43
43
  },
44
+ "./handlers.mjs": "./handlers.mjs",
44
45
  "./internal": {
45
- "types": "./core-internal.d.ts",
46
+ "types": "./dist/core-internal.d.ts",
46
47
  "import": {
47
48
  "development": "./dist/core.mjs",
48
49
  "production": "./dist/core.prod.mjs",
@@ -144,6 +145,7 @@
144
145
  "bindings",
145
146
  "build.d.ts",
146
147
  "cli.d.ts",
148
+ "handlers.mjs",
147
149
  "jsx-dev-runtime.d.ts",
148
150
  "jsx-runtime.d.ts",
149
151
  "loader.d.ts",
package/public.d.ts CHANGED
@@ -28,6 +28,7 @@ export {
28
28
  JSXOutput,
29
29
  noSerialize,
30
30
  NoSerialize,
31
+ OnVisibleTaskOptions,
31
32
  PrefetchGraph,
32
33
  PrefetchServiceWorker,
33
34
  PropsOf,
@@ -70,4 +71,5 @@ export {
70
71
  ValueOrPromise,
71
72
  version,
72
73
  withLocale,
74
+ SVGAttributes,
73
75
  } from './dist/core-internal';
@@ -1,3 +0,0 @@
1
- {
2
- "css.lint.unknownAtRules": "ignore"
3
- }
@@ -1,6 +0,0 @@
1
- module.exports = {
2
- plugins: {
3
- tailwindcss: {},
4
- autoprefixer: {},
5
- },
6
- }
@@ -1,8 +0,0 @@
1
- /** @type {import('tailwindcss').Config} */
2
- export default {
3
- content: ['./src/**/*.{js,ts,jsx,tsx,mdx}'],
4
- theme: {
5
- extend: {},
6
- },
7
- plugins: [],
8
- };