@builder.io/sdk-qwik 0.16.10 → 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 +2 -4
- 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",
|
|
@@ -105,7 +105,7 @@
|
|
|
105
105
|
"build-inline-fns": "yarn g:build-inline-fns",
|
|
106
106
|
"typecheck": "tsc --noEmit",
|
|
107
107
|
"tsc": "tsc",
|
|
108
|
-
"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",
|
|
109
109
|
"build:one": "vite build --mode lib",
|
|
110
110
|
"build:node": "SDK_ENV=node yarn build:one",
|
|
111
111
|
"build:edge": "SDK_ENV=edge yarn build:one",
|
|
@@ -118,8 +118,6 @@
|
|
|
118
118
|
"@builder.io/qwik": "^1.5.1",
|
|
119
119
|
"@builder.io/sdks": "workspace:*",
|
|
120
120
|
"@types/node": "latest",
|
|
121
|
-
"nx": "^19.6.5",
|
|
122
|
-
"nx-cloud": "^19.0.0",
|
|
123
121
|
"typescript": "5.5.2",
|
|
124
122
|
"vite": "^4.3.2"
|
|
125
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';
|