@qwik.dev/core 2.0.0-alpha.2 → 2.0.0-alpha.4

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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qwik.dev/core/testing",
3
- "version": "2.0.0-alpha.2-dev+58b6f8d",
3
+ "version": "2.0.0-alpha.4-dev+374e0d6",
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-alpha.2",
4
+ "version": "2.0.0-alpha.4",
5
5
  "author": "Qwik Team",
6
6
  "bin": {
7
7
  "qwik": "./qwik-cli.cjs"
@@ -17,7 +17,7 @@
17
17
  "prettier": "3.3.3",
18
18
  "ts-morph": "23.0.0",
19
19
  "vitest": "2.1.4",
20
- "@qwik.dev/core": "2.0.0-alpha.2",
20
+ "@qwik.dev/core": "2.0.0-alpha.4",
21
21
  "@qwik.dev/dom": "2.1.19"
22
22
  },
23
23
  "engines": {
@@ -134,7 +134,7 @@
134
134
  "./qwikloader.debug.js": "./dist/qwikloader.debug.js",
135
135
  "./qwik-prefetch.js": "./dist/qwik-prefetch.js",
136
136
  "./qwik-prefetch.debug.js": "./dist/qwik-prefetch.debug.js",
137
- "./package.json": "./dist/package.json"
137
+ "./package.json": "./package.json"
138
138
  },
139
139
  "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",
140
140
  "files": [
@@ -191,7 +191,7 @@
191
191
  "directory": "packages/qwik"
192
192
  },
193
193
  "type": "module",
194
- "types": "./dist/core.d.ts",
194
+ "types": "./public.d.ts",
195
195
  "scripts": {
196
196
  "build.insights": "cd src/insights && vite build --mode lib --emptyOutDir"
197
197
  }
package/public.d.ts CHANGED
@@ -17,6 +17,9 @@ export {
17
17
  getLocale,
18
18
  getPlatform,
19
19
  implicit$FirstArg,
20
+ isBrowser,
21
+ isDev,
22
+ isServer,
20
23
  isSignal,
21
24
  jsx,
22
25
  JSXChildren,
package/dist/index.d.ts DELETED
@@ -1,2 +0,0 @@
1
- // re-export to make TS happy when not using nodenext import resolution
2
- export * from './core';