@builder.io/sdk-qwik 0.16.9 → 0.16.11
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.
- package/lib/browser/constants/sdk-version.qwik.cjs +1 -1
- package/lib/browser/constants/sdk-version.qwik.mjs +1 -1
- package/lib/edge/constants/sdk-version.qwik.cjs +1 -1
- package/lib/edge/constants/sdk-version.qwik.mjs +1 -1
- package/lib/node/constants/sdk-version.qwik.cjs +1 -1
- package/lib/node/constants/sdk-version.qwik.mjs +1 -1
- package/package.json +4 -5
- package/types/src/constants/sdk-version.d.ts +1 -1
- package/types/src/server-index.d.ts +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@builder.io/sdk-qwik",
|
|
3
|
-
"version": "0.16.
|
|
3
|
+
"version": "0.16.11",
|
|
4
4
|
"homepage": "https://github.com/BuilderIO/builder/tree/main/packages/sdks/output/qwik",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -76,7 +76,8 @@
|
|
|
76
76
|
"types": "./types/src/index.d.ts",
|
|
77
77
|
"import": "./lib/browser/index.qwik.mjs",
|
|
78
78
|
"require": "./lib/browser/index.qwik.cjs"
|
|
79
|
-
}
|
|
79
|
+
},
|
|
80
|
+
"types": "./types/src/index.d.ts"
|
|
80
81
|
},
|
|
81
82
|
"./node/init": {
|
|
82
83
|
"types": "./types/src/functions/evaluate/node-runtime/init.d.ts",
|
|
@@ -104,7 +105,7 @@
|
|
|
104
105
|
"build-inline-fns": "yarn g:build-inline-fns",
|
|
105
106
|
"typecheck": "tsc --noEmit",
|
|
106
107
|
"tsc": "tsc",
|
|
107
|
-
"build": "nx run-many -p @builder.io/sdk-qwik -t tsc build:node build:edge build:browser",
|
|
108
|
+
"build": "yarn g:nx run-many -p @builder.io/sdk-qwik -t tsc build:node build:edge build:browser",
|
|
108
109
|
"build:one": "vite build --mode lib",
|
|
109
110
|
"build:node": "SDK_ENV=node yarn build:one",
|
|
110
111
|
"build:edge": "SDK_ENV=edge yarn build:one",
|
|
@@ -117,8 +118,6 @@
|
|
|
117
118
|
"@builder.io/qwik": "^1.5.1",
|
|
118
119
|
"@builder.io/sdks": "workspace:*",
|
|
119
120
|
"@types/node": "latest",
|
|
120
|
-
"nx": "^19.6.5",
|
|
121
|
-
"nx-cloud": "^19.0.0",
|
|
122
121
|
"typescript": "5.5.2",
|
|
123
122
|
"vite": "^4.3.2"
|
|
124
123
|
},
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const SDK_VERSION = "0.16.
|
|
1
|
+
export declare const SDK_VERSION = "0.16.11";
|
|
@@ -37,3 +37,4 @@ export { subscribeToEditor } from './helpers/subscribe-to-editor';
|
|
|
37
37
|
*/
|
|
38
38
|
export { fetchBuilderProps } from './functions/fetch-builder-props';
|
|
39
39
|
export { _processContentResult, fetchEntries, fetchOneEntry } from './functions/get-content/index';
|
|
40
|
+
export type { GetContentOptions } from './functions/get-content/types';
|