@builder.io/sdk 1.1.34 → 1.1.35
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/CHANGELOG.md +3 -0
- package/dist/index.browser.js +1 -1
- package/dist/index.browser.js.map +1 -1
- package/dist/index.cjs.js +85 -24
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +7 -6
- package/dist/index.esm.js +85 -24
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.umd.js +96 -35
- package/dist/index.umd.js.map +1 -1
- package/dist/package.json +16 -14
- package/dist/src/builder.class.d.ts +842 -837
- package/dist/src/builder.class.js +46 -6
- package/dist/src/builder.class.js.map +1 -1
- package/dist/src/classes/animator.class.d.ts +26 -26
- package/dist/src/classes/cookies.class.d.ts +15 -15
- package/dist/src/classes/observable.class.d.ts +26 -26
- package/dist/src/classes/promise.class.d.ts +17 -17
- package/dist/src/classes/query-string.class.d.ts +9 -9
- package/dist/src/classes/query-string.class.test.d.ts +1 -1
- package/dist/src/constants/builder.d.ts +2 -2
- package/dist/src/functions/assign.function.d.ts +1 -1
- package/dist/src/functions/fetch.function.d.ts +28 -28
- package/dist/src/functions/finder.function.d.ts +10 -10
- package/dist/src/functions/finder.function.js +1 -1
- package/dist/src/functions/get-top-level-domain.d.ts +6 -6
- package/dist/src/functions/next-tick.function.d.ts +1 -1
- package/dist/src/functions/omit.function.d.ts +1 -1
- package/dist/src/functions/server-only-require.function.d.ts +3 -3
- package/dist/src/functions/throttle.function.d.ts +1 -1
- package/dist/src/functions/to-error.d.ts +13 -13
- package/dist/src/functions/uuid.d.ts +8 -8
- package/dist/src/types/api-version.d.ts +2 -0
- package/dist/src/types/api-version.js +5 -0
- package/dist/src/types/api-version.js.map +1 -0
- package/dist/src/types/content.d.ts +31 -31
- package/dist/src/types/element.d.ts +60 -60
- package/dist/src/url.d.ts +9 -9
- package/dist/src/url.test.d.ts +1 -1
- package/dist/src/url.test.js +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +17 -15
package/dist/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@builder.io/sdk",
|
|
3
|
-
"version": "1.1.34
|
|
3
|
+
"version": "1.1.34",
|
|
4
4
|
"unpkg": "./dist/index.browser.js",
|
|
5
5
|
"main": "./dist/index.cjs.js",
|
|
6
6
|
"module": "./dist/index.esm.js",
|
|
@@ -11,21 +11,21 @@
|
|
|
11
11
|
},
|
|
12
12
|
"license": "MIT",
|
|
13
13
|
"scripts": {
|
|
14
|
-
"_unlink": "
|
|
15
|
-
"_install": "
|
|
16
|
-
"docs": "
|
|
14
|
+
"_unlink": "yarn unlink *",
|
|
15
|
+
"_install": "yarn install",
|
|
16
|
+
"docs": "yarn run docs:generate && yarn run docs:cleanup",
|
|
17
17
|
"docs:generate": "typedoc",
|
|
18
18
|
"docs:cleanup": "node scripts/cleanup-generated-docs",
|
|
19
|
-
"build": "
|
|
19
|
+
"build": "yarn run tsc && rollup -c",
|
|
20
20
|
"watch": "rollup -cw",
|
|
21
|
-
"start": "
|
|
21
|
+
"start": "yarn run watch",
|
|
22
22
|
"tsc": "tsc --module commonjs",
|
|
23
|
-
"release": "
|
|
24
|
-
"release:patch": "
|
|
25
|
-
"release:patch:nightly": "
|
|
26
|
-
"release:dev": "
|
|
23
|
+
"release": "yarn run build && yarn npm publish",
|
|
24
|
+
"release:patch": "yarn run build && yarn version patch && yarn npm publish",
|
|
25
|
+
"release:patch:nightly": "yarn run build && yarn version patch && yarn npm publish",
|
|
26
|
+
"release:dev": "yarn run build && yarn version prerelease --no-git-tag-version && yarn npm publish --tag dev",
|
|
27
27
|
"prepublishOnly": "block-publish",
|
|
28
|
-
"ci:build": "
|
|
28
|
+
"ci:build": "yarn run build",
|
|
29
29
|
"test": "jest --color"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
@@ -55,17 +55,19 @@
|
|
|
55
55
|
"rollup-plugin-node-globals": "^1.3.0",
|
|
56
56
|
"rollup-plugin-node-resolve": "^3.3.0",
|
|
57
57
|
"rollup-plugin-sourcemaps": "^0.4.2",
|
|
58
|
-
"rollup-plugin-
|
|
59
|
-
"rollup-plugin-typescript2": "^0.13.0",
|
|
58
|
+
"rollup-plugin-typescript2": "^0.32.1",
|
|
60
59
|
"rollup-plugin-uglify": "^3.0.0",
|
|
61
60
|
"typedoc": "^0.22.15",
|
|
62
61
|
"typedoc-plugin-markdown": "^3.12.1",
|
|
63
|
-
"typescript": "^4.
|
|
62
|
+
"typescript": "^4.7.4"
|
|
64
63
|
},
|
|
65
64
|
"dependencies": {
|
|
66
65
|
"hash-sum": "^2.0.0",
|
|
67
66
|
"node-fetch": "^2.3.0",
|
|
68
67
|
"tslib": "^1.10.0"
|
|
69
68
|
},
|
|
69
|
+
"installConfig": {
|
|
70
|
+
"hoistingLimits": "workspaces"
|
|
71
|
+
},
|
|
70
72
|
"gitHead": "4d96fbc32864698afbb355ab991c6d90be991951"
|
|
71
73
|
}
|