@qwik.dev/core 2.0.0-alpha.6 → 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 (52) 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 -42
  8. package/dist/core-internal.d.ts +77 -76
  9. package/dist/core.cjs +1498 -1323
  10. package/dist/core.cjs.map +1 -1
  11. package/dist/core.min.mjs +1 -1
  12. package/dist/core.mjs +1496 -1323
  13. package/dist/core.mjs.map +1 -1
  14. package/dist/core.prod.cjs +884 -782
  15. package/dist/core.prod.mjs +1006 -867
  16. package/dist/insights/index.qwik.cjs +3652 -154
  17. package/dist/insights/index.qwik.mjs +3652 -154
  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 +210 -5714
  22. package/dist/optimizer.mjs +191 -6037
  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 +762 -7127
  27. package/dist/server.mjs +778 -7121
  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/vitest/package.json +1 -1
  44. package/dist/testing/index.cjs +1265 -1124
  45. package/dist/testing/index.mjs +1271 -1124
  46. package/dist/testing/package.json +1 -1
  47. package/handlers.mjs +9 -0
  48. package/package.json +6 -4
  49. package/public.d.ts +2 -0
  50. package/dist/starters/features/tailwind/.vscode/settings.json +0 -3
  51. package/dist/starters/features/tailwind/postcss.config.cjs +0 -6
  52. 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.6-dev+d848ba5",
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.6",
4
+ "version": "2.0.0-alpha.7",
5
5
  "author": "Qwik Team",
6
6
  "bin": {
7
7
  "qwik": "./qwik-cli.cjs"
@@ -14,10 +14,10 @@
14
14
  "ignore": "5.3.1",
15
15
  "image-size": "1.1.1",
16
16
  "kleur": "4.1.5",
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.6",
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
- };