@builder.io/sdk 1.1.34 → 1.1.36-0
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/.yarnrc.yml +1 -0
- package/CHANGELOG.md +4 -1
- package/coverage/clover.xml +3848 -0
- package/coverage/coverage-final.json +19 -0
- package/coverage/lcov-report/base.css +224 -0
- package/coverage/lcov-report/block-navigation.js +87 -0
- package/coverage/lcov-report/favicon.png +0 -0
- package/coverage/lcov-report/index.html +176 -0
- package/coverage/lcov-report/prettify.css +1 -0
- package/coverage/lcov-report/prettify.js +2 -0
- package/coverage/lcov-report/sort-arrow-sprite.png +0 -0
- package/coverage/lcov-report/sorter.js +196 -0
- package/coverage/lcov-report/src/builder.class.ts.html +8107 -0
- package/coverage/lcov-report/src/classes/animator.class.ts.html +847 -0
- package/coverage/lcov-report/src/classes/cookies.class.ts.html +559 -0
- package/coverage/lcov-report/src/classes/index.html +176 -0
- package/coverage/lcov-report/src/classes/observable.class.ts.html +388 -0
- package/coverage/lcov-report/src/classes/promise.class.ts.html +607 -0
- package/coverage/lcov-report/src/classes/query-string.class.ts.html +328 -0
- package/coverage/lcov-report/src/functions/assign.function.ts.html +139 -0
- package/coverage/lcov-report/src/functions/fetch.function.ts.html +427 -0
- package/coverage/lcov-report/src/functions/get-top-level-domain.ts.html +121 -0
- package/coverage/lcov-report/src/functions/index.html +236 -0
- package/coverage/lcov-report/src/functions/next-tick.function.ts.html +184 -0
- package/coverage/lcov-report/src/functions/omit.function.ts.html +106 -0
- package/coverage/lcov-report/src/functions/server-only-require.function.ts.html +121 -0
- package/coverage/lcov-report/src/functions/throttle.function.ts.html +181 -0
- package/coverage/lcov-report/src/functions/to-error.ts.html +133 -0
- package/coverage/lcov-report/src/functions/uuid.ts.html +136 -0
- package/coverage/lcov-report/src/index.html +131 -0
- package/coverage/lcov-report/src/polyfills/custom-event-polyfill.js.html +121 -0
- package/coverage/lcov-report/src/polyfills/index.html +116 -0
- package/coverage/lcov-report/src/types/api-version.ts.html +91 -0
- package/coverage/lcov-report/src/types/index.html +116 -0
- package/coverage/lcov-report/src/url.ts.html +253 -0
- package/coverage/lcov.info +4317 -0
- package/dist/index.browser.js +2718 -1
- package/dist/index.browser.js.map +1 -1
- package/dist/index.cjs.js +88 -39
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.esm.js +81 -34
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.umd.js +101 -49
- package/dist/index.umd.js.map +1 -1
- package/dist/package.json +17 -15
- package/dist/src/builder.class.d.ts +16 -10
- package/dist/src/builder.class.js +58 -8
- package/dist/src/builder.class.js.map +1 -1
- package/dist/src/builder.class.test.d.ts +1 -0
- package/dist/src/builder.class.test.js +23 -0
- package/dist/src/builder.class.test.js.map +1 -0
- package/dist/src/classes/cookies.class.d.ts +1 -1
- package/dist/src/classes/observable.class.d.ts +1 -1
- package/dist/src/classes/query-string.class.d.ts +1 -1
- package/dist/src/functions/finder.function.d.ts +1 -1
- package/dist/src/functions/finder.function.js +1 -1
- package/dist/src/functions/next-tick.function.d.ts +2 -1
- package/dist/src/functions/server-only-require.function.d.ts +1 -1
- 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/element.d.ts +2 -2
- package/dist/src/url.d.ts +3 -3
- package/dist/src/url.test.js +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/jest.config.ts +1 -3
- package/package.json +17 -15
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
/// <reference types="node" />
|
|
2
|
+
export declare function nextTick(fn: () => void): NodeJS.Immediate | undefined;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"api-version.js","sourceRoot":"","sources":["../../../src/types/api-version.ts"],"names":[],"mappings":";;;AACa,QAAA,mBAAmB,GAAe,IAAI,CAAC"}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
|
|
1
|
+
type JSONValue = string | number | boolean | JSONObject | JSONArray;
|
|
2
2
|
interface JSONObject {
|
|
3
3
|
[x: string]: JSONValue;
|
|
4
4
|
}
|
|
5
5
|
interface JSONArray extends Array<JSONValue> {
|
|
6
6
|
}
|
|
7
|
-
export
|
|
7
|
+
export type SerializableCSSStyleDeclaration = Partial<Record<keyof CSSStyleDeclaration, string>>;
|
|
8
8
|
/**
|
|
9
9
|
* An object representing an element in Builder
|
|
10
10
|
*/
|
package/dist/src/url.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
/// <reference types="
|
|
1
|
+
/// <reference types="node" />
|
|
2
2
|
import { UrlWithStringQuery } from 'url';
|
|
3
|
-
|
|
3
|
+
type Fix<T> = {
|
|
4
4
|
[P in keyof T]: T[P] | null;
|
|
5
5
|
};
|
|
6
|
-
export
|
|
6
|
+
export type UrlLike = Fix<UrlWithStringQuery>;
|
|
7
7
|
export declare function emptyUrl(): UrlLike;
|
|
8
8
|
export declare function parse(url: string): UrlLike;
|
|
9
9
|
export {};
|
package/dist/src/url.test.js
CHANGED
|
@@ -14,7 +14,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
14
14
|
function verb(n) { return function (v) { return step([n, v]); }; }
|
|
15
15
|
function step(op) {
|
|
16
16
|
if (f) throw new TypeError("Generator is already executing.");
|
|
17
|
-
while (_) try {
|
|
17
|
+
while (g && (g = 0, op[0] && (_ = 0)), _) try {
|
|
18
18
|
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
19
19
|
if (y = 0, t) op = [op[0] & 2, t.value];
|
|
20
20
|
switch (op[0]) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"program":{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../src/functions/next-tick.function.ts","../src/classes/query-string.class.ts","../package.json","../src/classes/observable.class.ts","../src/classes/promise.class.ts","../src/functions/server-only-require.function.ts","../src/functions/fetch.function.ts","../src/functions/assign.function.ts","../src/functions/throttle.function.ts","../src/classes/animator.class.ts","../src/types/element.ts","../src/functions/get-top-level-domain.ts","../src/classes/cookies.class.ts","../src/functions/omit.function.ts","../src/types/content.ts","../src/functions/uuid.ts","../src/url.ts","../src/functions/to-error.ts","../src/builder.class.ts","../src/constants/builder.ts","../index.ts","../src/url.test.ts","../src/classes/query-string.class.test.ts","../src/functions/finder.function.ts","../src/typings/index.d.ts","../../../node_modules/@types/events/index.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/base.d.ts","../node_modules/@types/node/ts3.2/index.d.ts","../types.d.ts","../node_modules/@babel/types/lib/index.d.ts","../node_modules/@types/babel__generator/index.d.ts","../node_modules/@babel/parser/typings/babel-parser.d.ts","../node_modules/@types/babel__template/index.d.ts","../node_modules/@types/babel__traverse/index.d.ts","../node_modules/@types/babel__core/index.d.ts","../node_modules/@types/estree/index.d.ts","../node_modules/@types/minimatch/index.d.ts","../node_modules/@types/glob/index.d.ts","../node_modules/@types/graceful-fs/index.d.ts","../node_modules/@types/istanbul-lib-coverage/index.d.ts","../node_modules/@types/istanbul-lib-report/index.d.ts","../node_modules/@types/istanbul-reports/index.d.ts","../node_modules/jest-diff/build/cleanupsemantic.d.ts","../node_modules/pretty-format/build/types.d.ts","../node_modules/pretty-format/build/index.d.ts","../node_modules/jest-diff/build/types.d.ts","../node_modules/jest-diff/build/difflines.d.ts","../node_modules/jest-diff/build/printdiffs.d.ts","../node_modules/jest-diff/build/index.d.ts","../node_modules/@types/jest/index.d.ts","../node_modules/@types/js-cookie/index.d.ts","../node_modules/@types/json-stable-stringify/index.d.ts","../node_modules/@types/node-fetch/index.d.ts","../node_modules/@types/prettier/index.d.ts","../node_modules/@types/qs/index.d.ts","../node_modules/@types/query-string/index.d.ts","../node_modules/@types/stack-utils/index.d.ts","../node_modules/@types/ua-parser-js/index.d.ts","../node_modules/@types/virtual-dom/index.d.ts","../node_modules/@types/yargs-parser/index.d.ts","../node_modules/@types/yargs/index.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/index.d.ts","../node_modules/@types/node/http.d.ts"],"fileInfos":[{"version":"3ac1b83264055b28c0165688fda6dfcc39001e9e7828f649299101c23ad0a0c3","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9",{"version":"72704b10d97777e15f1a581b73f88273037ef752d2e50b72287bd0a90af64fe6","affectsGlobalScope":true},{"version":"d8996609230d17e90484a2dd58f22668f9a05a3bfe00bfb1d6271171e54a31fb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"9ee9a79bfc7635fbb8d71fde2d9d11c8d3c53cab239f6d7342c188490174fd93","signature":"2ca870515eaf428c9294f2430dd140a1fc61d0c88af556ae4fd4bc976f594cd3"},{"version":"0860a67bcaf5bcad3044e0f0b532fb61a03e603b6b875590eb7fb096a700ecb1","signature":"4ed090158d1726712358df0f79ff2806c397d1a42046e6cbe6dc097e5c164dd3"},{"version":"898bf526992716c5de3baa261ca4b2f141f0603d5f5d4e428633ad344ae71d09","signature":"57e2ae82625c7d84cc9a07cd15b264bfc81090ae1cd46e81672fc4300989a1bd"},{"version":"b06a1fd2c80546cb44491cfb0133d5b734bf195a5dddaedc913456803dbdae40","signature":"e4f71bb9469f2093b505caef2c76ec0a8231f7c65b041f47a66abd2a259334df"},{"version":"c02816fa89998a9fde98a12ea3baffb94e0198a9a728258f07b24e725503a524","signature":"fb3705163b9e2dec4b28b5c5cf4239586cab7badead6b6917d679d1dcb0c97af"},{"version":"738698eacc079fcd0602a437a46ce744d64c7e1fc7c27b1e8b0fe1163cd8799d","signature":"74b4db2368ecbfee1c32cffb6390d10d0a6f93b66b8686efe8418476a7bce442"},{"version":"c0f93bc7b4ec0d16ce4315fad5e5381eefd4f6fb68efaab67e7116cfa71f76ad","signature":"f5811cf7c9d6ba5ed92ff879583b031d7ccc2049975e6b209c1c3c171336139d"},{"version":"e460753a5bfea6c688fdaac978465fd567816a14300209cbe95a4aa3baac478b","signature":"45da2f93c408363988a279fe2b4a297827c2eba4500240e57db9b03d91d013a0"},{"version":"b86464d97a671a400be3add6091ae3ba0193d3a5ba1894047ee8fcd6631de323","signature":"63737ef1d91689ddb84dd620b5eddfb8c9ee92ec1701721e916960f1d40b7ebe"},{"version":"7b07a20c802f65d424d02e798b81fbc746bb79d4906218e6d8545533e9ca977e","signature":"e4f30c768c1ac48fcf8150181575444e72986b3dd4e58ddf5ddb1f742b49bf31"},{"version":"22a174955ee8adf6069b1ddb0da5dc68ddaa6e8a5f2e8badbcf06678a3102330","signature":"3c10855c81ced2f9e00c24272dbf16a8f23bbc40376c73997f6daf62bf2b8b00"},{"version":"3f20e103b33ff882739ffe6c822e1350318c809563d90de79da56a33f1c97841","signature":"5bd24a0f7f6660b5f8aa9100b3de979693a2c7d4970f915c2a728a9ed55ea415"},{"version":"80d76a8becbc9c3e90490f7588ca59df12638af3c818a9628b925cbc577c6bdb","signature":"b6771096710a8eecc7e71a997a172b768ab278fdfd4e9c89633dde996c67077c"},{"version":"4769509030a4e8d0ba4e17608f6019d651fb19f05b866fa3a557a49d21d40fe3","signature":"f88015079d20134f1aab8440510d139d897e69a775a66fbdce327dea89aa576a"},{"version":"8b86ad8122ee5093973d0d4c5974046df60c9b4372a973a0c25575f189cc5fd0","signature":"dd52a1204ccd13bb75097b486954339163ef4832834360721b0346ef3dd503bd"},{"version":"78d37663836142d837ddf540d739bae79a34b3ec1ac6a58ffa2023aca2f8595a","signature":"f9f1eb2897f6cb0b6990745d1aa4dd22de15e01be91a8ebe30a96f0988aa0f2c"},{"version":"b5e9213fff9d34a035e22a03158bddd58cc43a40f11e8153c3b66e67b39e054e","signature":"521e345cb3707f7a93c718a557957e2efd216bb5a2aa26fccd253832d0698fc3"},{"version":"beb97b83d3e7da15164bf82728b4e725010e083fcba0b0a9f80406449eb03c6d","signature":"2ece452292677e47984359a3e6a7c4646b3e25b235fe6a4410c1ee7997cf8f3f"},{"version":"0dc9da47ca7d424abd7217174fbcd27caf15f14381ecbd87072eb2279d9d37ca","signature":"6441dd91cbecb52cb005b3100fef7d8f67215e40c67c9714078243a8edc0a5e6"},{"version":"0d6341263951e7ae0bb4d6a3b6aec116108cf8f2f7096bfe4f32d6e2274bf63d","signature":"c2a9652d6a4afcc81992b0a24854cf65c22600dfc91709784a5eeaee4dac13cf"},{"version":"390ba944b005719a46df51736d90672897620de7b05644066be2704a78804e70","signature":"3820787bfa2dbdd954f1fec7ba908b6b210d91600b97a2d3e8ec91dfe00d1754"},{"version":"d0da49170ec964867e38e8b146d68693c4a4d07a6d1e419ecc17c80513ac99a6","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"55dcbfaf97bcc8a604f850f17534acc3dba7357b54b5b69546c7c4b5ecc4a62f","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"b2a503cef0f8759581e77a03e663b4355bb11253ab030c8184f54c7675ac53d8","signature":"e4ccf76d34c51beac88606656713ff6a9608763a8c6ca57aa911d74732bb9775"},"979be1f15938f4dbafa42d9b22aa870e1f456918535abba11a352533ad36b0f5","400db42c3a46984118bff14260d60cec580057dc1ab4c2d7310beb643e4f5935","29cc6a94ae5570b51c37343354e40330e05025f6d2a796711f2f9b8536ce702b",{"version":"9e9e4d43e612507b853fcb258c83382e8bfe1cbfbdd0c8c3cebc23c910d3d444","affectsGlobalScope":true},"1de0ff6200b92798a5aef43f57029c79dbf69932037dee1c007fdd2c562db258","48e4ab4540aa291062a9f5b223dd5cebde35c2a9a7007d99b91d77e71d4266dc","d5d7b68f5369a210c235cd65458369888f8b839192d088c964f21cab3ac954db","cc957354aa3c94c9961ebf46282cfde1e81d107fc5785a61f62c67f1dd3ac2eb","64b867c61effed7b5bc0cc06b3d8eac23b067a3fba581fc7d3c292fa593e6a45","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","3b043cf9a81854a72963fdb57d1884fc4da1cf5be69b5e0a4c5b751e58cb6d88","dd5647a9ccccb2b074dca8a02b00948ac293091ebe73fdf2e6e98f718819f669","3e41ed5b061b1734fa545e4309f99c494960557372f64b1ef60b139b8f5379dc","8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","fd326577c62145816fe1acc306c734c2396487f76719d3785d4e825b34540b33","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","8b06ac3faeacb8484d84ddb44571d8f410697f98d7bfa86c0fda60373a9f5215","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","462bccdf75fcafc1ae8c30400c9425e1a4681db5d605d1a0edb4f990a54d8094","5923d8facbac6ecf7c84739a5c701a57af94a6f6648d6229a6c768cf28f0f8cb","7adecb2c3238794c378d336a8182d4c3dd2c4fa6fa1785e2797a3db550edea62","dc12dc0e5aa06f4e1a7692149b78f89116af823b9e1f1e4eae140cd3e0e674e6","1bfc6565b90c8771615cd8cfcf9b36efc0275e5e83ac7d9181307e96eb495161","8a8a96898906f065f296665e411f51010b51372fa260d5373bf9f64356703190",{"version":"6ff2ca51e2c9d88d6d904c481879b12ec0cad2a69b88e220859a52207444773b","affectsGlobalScope":true},"a1ec23b323ad57b2b13707ea953605c25ce9c8e2d011ae356e247e4b800ab7ec","0ff503ae2e4623981da229c3bd11b812985e36199641993159e7b65457c3ea48","22f93f14b0c14e882bde0f7681f3c713d29c6471cfec9cd6428e8cc2ef5e32e8","501260c8b07a6e423fb6ebdea704e732ad529208e4fbbc517836fac8f8ae8895","c048b9659fff2e130bd6408317fa8cc833e50a1e8b8bdbf81544848b2c278c59","191a86aef5e87c7ce1cb42f17d8d3fbe66f74dff7e396b1f0cff124cc66ae97d","b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298",{"version":"59cd3c852c5b38f67d5c2fbbdbb2c2b5609700195fab22220b2a95498d2cc6f1","affectsGlobalScope":true},{"version":"2512251831b4d15e3933285ff6edcc412c662fd66f4daf08a9503c5b5a36e895","affectsGlobalScope":true},"f7e133b20ee2669b6c0e5d7f0cd510868c57cd64b283e68c7f598e30ce9d76d2","6ba73232c9d3267ca36ddb83e335d474d2c0e167481e3dec416c782894e11438"],"options":{"allowSyntheticDefaultImports":true,"composite":true,"declaration":true,"declarationDir":"./","esModuleInterop":true,"module":1,"outDir":"./","skipLibCheck":true,"sourceMap":true,"strict":true,"target":1},"fileIdsList":[[48,49],[24,31,35,39,40,48,49],[48,49,51],[48,49,51,52,53,54,55],[48,49,51,53],[48,49,58],[48,49,61],[48,49,62],[48,49,66,70],[47,48,49],[48],[48,49,81],[48,49,64,67],[48,49,64,67,68,69],[48,49,66],[48,49,65],[21,22,23,24,27,28,29,30,31,32,33,34,35,36,37,38,48,49,50],[28,29,48,49],[32,48,49],[21,48,49],[22,48,49],[39,48,49],[25,26,48,49],[31,39,48,49],[37,48,49],[83],[24,31,35,39,40],[51,83],[51,52,53,54,55,83],[51,53,83],[58,83,84,85,86],[83,85,86],[61,83],[62,83],[66,70,83],[83,86,87],[81,83],[64,67,83],[64,67,68,69,83],[66,83],[65,83],[21,24,29,30,31,33,35,48],[39],[31,39],[83,86]],"referencedMap":[[46,1],[41,2],[53,3],[51,1],[56,4],[52,3],[54,5],[55,3],[57,1],[59,6],[60,1],[61,1],[62,7],[63,8],[71,9],[72,1],[73,1],[58,1],[74,1],[48,10],[47,1],[49,11],[75,1],[76,1],[77,1],[78,1],[79,1],[80,1],[81,1],[82,12],[64,1],[68,13],[70,14],[69,13],[67,15],[66,16],[65,1],[5,1],[7,1],[6,1],[2,1],[8,1],[9,1],[10,1],[11,1],[12,1],[13,1],[14,1],[15,1],[3,1],[4,1],[19,1],[16,1],[17,1],[18,1],[20,1],[1,1],[23,1],[39,17],[30,18],[33,19],[24,1],[25,20],[43,21],[22,1],[40,22],[28,1],[27,23],[44,1],[32,1],[21,1],[34,1],[26,1],[29,1],[38,1],[36,1],[35,24],[31,1],[45,1],[42,25],[37,1],[50,1]],"exportedModulesMap":[[46,26],[41,27],[53,28],[51,26],[56,29],[52,28],[54,30],[55,28],[57,26],[59,31],[60,32],[61,26],[62,33],[63,34],[71,35],[72,26],[73,26],[58,26],[74,36],[48,10],[47,1],[49,11],[75,26],[76,26],[77,26],[78,26],[79,26],[80,26],[81,26],[82,37],[64,26],[68,38],[70,39],[69,38],[67,40],[66,41],[65,26],[5,26],[7,26],[6,26],[2,26],[8,26],[9,26],[10,26],[11,26],[12,26],[13,26],[14,26],[15,26],[3,26],[4,26],[19,26],[16,26],[17,26],[18,26],[20,26],[1,26],[39,42],[33,11],[40,43],[35,44],[45,26],[37,11],[50,45]],"semanticDiagnosticsPerFile":[46,41,53,51,56,52,54,55,57,59,60,61,62,63,71,72,73,58,74,48,47,49,75,76,77,78,79,80,81,82,64,68,70,69,67,66,65,5,7,6,2,8,9,10,11,12,13,14,15,3,4,19,16,17,18,20,1,23,39,30,33,24,25,43,22,40,28,27,44,32,21,34,26,29,38,36,35,31,45,42,37,50]},"version":"4.6.4"}
|
|
1
|
+
{"program":{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../src/functions/next-tick.function.ts","../src/classes/query-string.class.ts","../package.json","../src/classes/observable.class.ts","../src/classes/promise.class.ts","../src/functions/server-only-require.function.ts","../src/functions/fetch.function.ts","../src/functions/assign.function.ts","../src/functions/throttle.function.ts","../src/classes/animator.class.ts","../src/types/element.ts","../src/functions/get-top-level-domain.ts","../src/classes/cookies.class.ts","../src/functions/omit.function.ts","../src/types/content.ts","../src/functions/uuid.ts","../src/url.ts","../src/functions/to-error.ts","../src/types/api-version.ts","../src/builder.class.ts","../src/constants/builder.ts","../index.ts","../src/builder.class.test.ts","../src/url.test.ts","../src/classes/query-string.class.test.ts","../src/functions/finder.function.ts","../src/typings/index.d.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/@types/events/index.d.ts","../node_modules/buffer/index.d.ts","../node_modules/undici-types/header.d.ts","../node_modules/undici-types/readable.d.ts","../node_modules/undici-types/file.d.ts","../node_modules/undici-types/fetch.d.ts","../node_modules/undici-types/formdata.d.ts","../node_modules/undici-types/connector.d.ts","../node_modules/undici-types/client.d.ts","../node_modules/undici-types/errors.d.ts","../node_modules/undici-types/dispatcher.d.ts","../node_modules/undici-types/global-dispatcher.d.ts","../node_modules/undici-types/global-origin.d.ts","../node_modules/undici-types/pool-stats.d.ts","../node_modules/undici-types/pool.d.ts","../node_modules/undici-types/handlers.d.ts","../node_modules/undici-types/balanced-pool.d.ts","../node_modules/undici-types/agent.d.ts","../node_modules/undici-types/mock-interceptor.d.ts","../node_modules/undici-types/mock-agent.d.ts","../node_modules/undici-types/mock-client.d.ts","../node_modules/undici-types/mock-pool.d.ts","../node_modules/undici-types/mock-errors.d.ts","../node_modules/undici-types/proxy-agent.d.ts","../node_modules/undici-types/api.d.ts","../node_modules/undici-types/cookies.d.ts","../node_modules/undici-types/patch.d.ts","../node_modules/undici-types/filereader.d.ts","../node_modules/undici-types/diagnostics-channel.d.ts","../node_modules/undici-types/websocket.d.ts","../node_modules/undici-types/content-type.d.ts","../node_modules/undici-types/cache.d.ts","../node_modules/undici-types/interceptors.d.ts","../node_modules/undici-types/index.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/dom-events.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/readline/promises.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/test.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/globals.global.d.ts","../node_modules/@types/node/index.d.ts","../types.d.ts","../node_modules/@babel/types/lib/index.d.ts","../node_modules/@types/babel__generator/index.d.ts","../node_modules/@babel/parser/typings/babel-parser.d.ts","../node_modules/@types/babel__template/index.d.ts","../node_modules/@types/babel__traverse/index.d.ts","../node_modules/@types/babel__core/index.d.ts","../node_modules/@types/estree/index.d.ts","../node_modules/@types/minimatch/index.d.ts","../node_modules/@types/glob/index.d.ts","../node_modules/@types/graceful-fs/index.d.ts","../node_modules/@types/istanbul-lib-coverage/index.d.ts","../node_modules/@types/istanbul-lib-report/index.d.ts","../node_modules/@types/istanbul-reports/index.d.ts","../node_modules/jest-diff/build/cleanupsemantic.d.ts","../node_modules/pretty-format/build/types.d.ts","../node_modules/pretty-format/build/index.d.ts","../node_modules/jest-diff/build/types.d.ts","../node_modules/jest-diff/build/difflines.d.ts","../node_modules/jest-diff/build/printdiffs.d.ts","../node_modules/jest-diff/build/index.d.ts","../node_modules/@types/jest/index.d.ts","../node_modules/@types/js-cookie/index.d.ts","../node_modules/@types/json-stable-stringify/index.d.ts","../node_modules/@types/node-fetch/index.d.ts","../node_modules/@types/prettier/index.d.ts","../node_modules/@types/qs/index.d.ts","../node_modules/@types/query-string/index.d.ts","../node_modules/@types/stack-utils/index.d.ts","../node_modules/@types/ua-parser-js/index.d.ts","../node_modules/@types/virtual-dom/index.d.ts","../node_modules/@types/yargs-parser/index.d.ts","../node_modules/@types/yargs/index.d.ts"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},{"version":"9ee9a79bfc7635fbb8d71fde2d9d11c8d3c53cab239f6d7342c188490174fd93","signature":"6d1b3d4957c377e2d0d1af50ac335e058c3e3ddc2e314ebffb89b1fcb0d94ea2"},{"version":"0860a67bcaf5bcad3044e0f0b532fb61a03e603b6b875590eb7fb096a700ecb1","signature":"337d05c39525fa0b486213484dcc7d233f309b50d5c25ed7ddd7a335903dd343"},{"version":"a8cc8cc60254c5507c44ab4f2726c0c215d94812b8892bfdb27bfcfff5dbc241","signature":"6c93c7bef8f192f5e4362893e94d48018d3d9291381444c4854bb1f15327086d"},{"version":"b06a1fd2c80546cb44491cfb0133d5b734bf195a5dddaedc913456803dbdae40","signature":"af5b1479488e140bed5a594454bf88dcfc5123f5556d951241c0fda528fa9007"},{"version":"c02816fa89998a9fde98a12ea3baffb94e0198a9a728258f07b24e725503a524","signature":"fb3705163b9e2dec4b28b5c5cf4239586cab7badead6b6917d679d1dcb0c97af"},{"version":"738698eacc079fcd0602a437a46ce744d64c7e1fc7c27b1e8b0fe1163cd8799d","signature":"198c73b0e7e45838bd6873fc981f94b9efb42dc75183d7eed038e29582a5e620"},{"version":"c0f93bc7b4ec0d16ce4315fad5e5381eefd4f6fb68efaab67e7116cfa71f76ad","signature":"f5811cf7c9d6ba5ed92ff879583b031d7ccc2049975e6b209c1c3c171336139d"},{"version":"e460753a5bfea6c688fdaac978465fd567816a14300209cbe95a4aa3baac478b","signature":"45da2f93c408363988a279fe2b4a297827c2eba4500240e57db9b03d91d013a0"},{"version":"b86464d97a671a400be3add6091ae3ba0193d3a5ba1894047ee8fcd6631de323","signature":"63737ef1d91689ddb84dd620b5eddfb8c9ee92ec1701721e916960f1d40b7ebe"},{"version":"7b07a20c802f65d424d02e798b81fbc746bb79d4906218e6d8545533e9ca977e","signature":"e4f30c768c1ac48fcf8150181575444e72986b3dd4e58ddf5ddb1f742b49bf31"},{"version":"22a174955ee8adf6069b1ddb0da5dc68ddaa6e8a5f2e8badbcf06678a3102330","signature":"d11abaccd4378cf7331dd7244f259ba54483126018ab83ea8f4778a78f184d2b"},{"version":"3f20e103b33ff882739ffe6c822e1350318c809563d90de79da56a33f1c97841","signature":"5bd24a0f7f6660b5f8aa9100b3de979693a2c7d4970f915c2a728a9ed55ea415"},{"version":"80d76a8becbc9c3e90490f7588ca59df12638af3c818a9628b925cbc577c6bdb","signature":"e68f4c314ebf3281e7e1a0772f830620274da0f7c0e62d1167afc4de87168aae"},{"version":"4769509030a4e8d0ba4e17608f6019d651fb19f05b866fa3a557a49d21d40fe3","signature":"f88015079d20134f1aab8440510d139d897e69a775a66fbdce327dea89aa576a"},{"version":"8b86ad8122ee5093973d0d4c5974046df60c9b4372a973a0c25575f189cc5fd0","signature":"dd52a1204ccd13bb75097b486954339163ef4832834360721b0346ef3dd503bd"},{"version":"78d37663836142d837ddf540d739bae79a34b3ec1ac6a58ffa2023aca2f8595a","signature":"f9f1eb2897f6cb0b6990745d1aa4dd22de15e01be91a8ebe30a96f0988aa0f2c"},{"version":"b5e9213fff9d34a035e22a03158bddd58cc43a40f11e8153c3b66e67b39e054e","signature":"a4a77f9e8eaa3a9aa562e52102fc58981c0e46cbd3b65d6a99bc9f75a2a4902b"},{"version":"beb97b83d3e7da15164bf82728b4e725010e083fcba0b0a9f80406449eb03c6d","signature":"2ece452292677e47984359a3e6a7c4646b3e25b235fe6a4410c1ee7997cf8f3f"},{"version":"4cfde0f8ac45150880a93c33a920a39c781cb1c3fa1d80e7efd3f76b2223d65c","signature":"617d3b1bb572a9d34c6a772a002182b653c39437d4a773720a35e2c77c537912"},{"version":"076442b7b5f6151243ee9a219a7152fb255a10b4226df559a0015dc1d9f86d5d","signature":"8c0ddca42be18597a5c9af9b1f04c272f4b04cab0630c01896fb5732822eb3cc"},{"version":"0d6341263951e7ae0bb4d6a3b6aec116108cf8f2f7096bfe4f32d6e2274bf63d","signature":"c2a9652d6a4afcc81992b0a24854cf65c22600dfc91709784a5eeaee4dac13cf"},{"version":"f42413eac2bd59a74eb57bf495b91f889e26cb5fc165dcf18417137a781a909a","signature":"9d8dae703ba72a45859d660c35f22dcb761962e83d8f9eb512277fd4c135cb08"},{"version":"d1bb972a35a358e13d08b4e7dbef4d62b5fe03830d72e726f028a6db011b399c","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"d0da49170ec964867e38e8b146d68693c4a4d07a6d1e419ecc17c80513ac99a6","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"55dcbfaf97bcc8a604f850f17534acc3dba7357b54b5b69546c7c4b5ecc4a62f","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"b2a503cef0f8759581e77a03e663b4355bb11253ab030c8184f54c7675ac53d8","signature":"6b0a4e2676b104b69b115070856296086e4f69a94ec3f745664b72be6283ff8f"},"979be1f15938f4dbafa42d9b22aa870e1f456918535abba11a352533ad36b0f5","efc7d584a33fe3422847783d228f315c4cd1afe74bd7cf8e3f0e4c1125129fef","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","400db42c3a46984118bff14260d60cec580057dc1ab4c2d7310beb643e4f5935","8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","7180c03fd3cb6e22f911ce9ba0f8a7008b1a6ddbe88ccf16a9c8140ef9ac1686","25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","54cb85a47d760da1c13c00add10d26b5118280d44d58e6908d8e89abbd9d7725","3e4825171442666d31c845aeb47fcd34b62e14041bb353ae2b874285d78482aa","c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","a967bfe3ad4e62243eb604bf956101e4c740f5921277c60debaf325c1320bf88","e9775e97ac4877aebf963a0289c81abe76d1ec9a2a7778dbe637e5151f25c5f3","471e1da5a78350bc55ef8cef24eb3aca6174143c281b8b214ca2beda51f5e04a","cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","db3435f3525cd785bf21ec6769bf8da7e8a776be1a99e2e7efb5f244a2ef5fee","c3b170c45fc031db31f782e612adf7314b167e60439d304b49e704010e7bafe5","40383ebef22b943d503c6ce2cb2e060282936b952a01bea5f9f493d5fb487cc7","4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","3a84b7cb891141824bd00ef8a50b6a44596aded4075da937f180c90e362fe5f6","13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","33203609eba548914dc83ddf6cadbc0bcb6e8ef89f6d648ca0908ae887f9fcc5","0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","9f0a92164925aa37d4a5d9dd3e0134cff8177208dba55fd2310cd74beea40ee2","8bfdb79bf1a9d435ec48d9372dc93291161f152c0865b81fc0b2694aedb4578d","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","d32275be3546f252e3ad33976caf8c5e842c09cb87d468cb40d5f4cf092d1acc","4a0c3504813a3289f7fb1115db13967c8e004aa8e4f8a9021b95285502221bd1",{"version":"4d719cfab49ae4045d15cb6bed0f38ad3d7d6eb7f277d2603502a0f862ca3182","affectsGlobalScope":true},"cce1f5f86974c1e916ec4a8cab6eec9aa8e31e8148845bf07fbaa8e1d97b1a2c",{"version":"185282b122cbca820c297a02a57b89cf5967ab43e220e3e174d872d3f9a94d2c","affectsGlobalScope":true},"16d74fe4d8e183344d3beb15d48b123c5980ff32ff0cc8c3b96614ddcdf9b239","7b43160a49cf2c6082da0465876c4a0b164e160b81187caeb0a6ca7a281e85ba",{"version":"41fb2a1c108fbf46609ce5a451b7ec78eb9b5ada95fd5b94643e4b26397de0b3","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb","e8968b394e4365588f8f89cfff86435258cf10062585c1d2224627ab92acda22","285e512c7a0db217a0599e18c462d565fa35be4a5153dd7b80bee88c83e83ddf","b5b719a47968cd61a6f83f437236bb6fe22a39223b6620da81ef89f5d7a78fb7","8806ae97308ef26363bd7ec8071bca4d07fb575f905ee3d8a91aff226df6d618","af5bf1db6f1804fb0069039ae77a05d60133c77a2158d9635ea27b6bb2828a8f","b7fe70be794e13d1b7940e318b8770cd1fb3eced7707805318a2e3aaac2c3e9e",{"version":"2c71199d1fc83bf17636ad5bf63a945633406b7b94887612bba4ef027c662b3e","affectsGlobalScope":true},{"version":"7ae9dc7dbb58cd843065639707815df85c044babaa0947116f97bdb824d07204","affectsGlobalScope":true},"7aae1df2053572c2cfc2089a77847aadbb38eedbaa837a846c6a49fb37c6e5bd","313a0b063f5188037db113509de1b934a0e286f14e9479af24fada241435e707","1f758340b027b18ae8773ac3d33a60648a2af49eaae9e4fde18d0a0dd608642c","87ef1a23caa071b07157c72077fa42b86d30568f9dc9e31eed24d5d14fc30ba8","396a8939b5e177542bdf9b5262b4eee85d29851b2d57681fa9d7eae30e225830","21773f5ac69ddf5a05636ba1f50b5239f4f2d27e4420db147fc2f76a5ae598ac",{"version":"dea4c00820d4fac5e530d4842aed2fb20d6744d75a674b95502cbd433f88bcb0","affectsGlobalScope":true},"a5fe4cc622c3bf8e09ababde5f4096ceac53163eefcd95e9cd53f062ff9bb67a","45b1053e691c5af9bfe85060a3e1542835f8d84a7e6e2e77ca305251eda0cb3c","0f05c06ff6196958d76b865ae17245b52d8fe01773626ac3c43214a2458ea7b7",{"version":"0d832a0650a74aafc276cb3f7bb26bde2e2270a6f87e6c871a64122e9203079b","affectsGlobalScope":true},{"version":"c6f3869f12bb5c3bb8ecd0b050ea20342b89b944eae18d313cde6b0ccc0925d7","affectsGlobalScope":true},"8abd0566d2854c4bd1c5e48e05df5c74927187f1541e6770001d9637ac41542e","d742ed2db6d5425b3b6ac5fb1f2e4b1ed2ae74fbeee8d0030d852121a4b05d2f","d8dba11dc34d50cb4202de5effa9a1b296d7a2f4a029eec871f894bddfb6430d","8b71dd18e7e63b6f991b511a201fad7c3bf8d1e0dd98acb5e3d844f335a73634","01d8e1419c84affad359cc240b2b551fb9812b450b4d3d456b64cda8102d4f60","458b216959c231df388a5de9dcbcafd4b4ca563bc3784d706d0455467d7d4942","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","f8c87b19eae111f8720b0345ab301af8d81add39621b63614dfc2d15fd6f140a","831c22d257717bf2cbb03afe9c4bcffc5ccb8a2074344d4238bf16d3a857bb12",{"version":"2225100373ca3d63bcc7f206e1177152d2e2161285a0bd83c8374db1503a0d1f","affectsGlobalScope":true},{"version":"7052b7b0c3829df3b4985bab2fd74531074b4835d5a7b263b75c82f0916ad62f","affectsGlobalScope":true},"aa34c3aa493d1c699601027c441b9664547c3024f9dbab1639df7701d63d18fa","eefcdf86cefff36e5d87de36a3638ab5f7d16c2b68932be4a72c14bb924e43c1","7c651f8dce91a927ab62925e73f190763574c46098f2b11fb8ddc1b147a6709a","7440ab60f4cb031812940cc38166b8bb6fbf2540cfe599f87c41c08011f0c1df",{"version":"4d0405568cf6e0ff36a4861c4a77e641366feaefa751600b0a4d12a5e8f730a8","affectsGlobalScope":true},{"version":"0ed13c80faeb2b7160bffb4926ff299c468e67a37a645b3ae0917ba0db633c1b","affectsGlobalScope":true},"e393915d3dc385e69c0e2390739c87b2d296a610662eb0b1cb85224e55992250","79bad8541d5779c85e82a9fb119c1fe06af77a71cc40f869d62ad379473d4b75","4a34b074b11c3597fb2ff890bc8f1484375b3b80793ab01f974534808d5777c7",{"version":"629d20681ca284d9e38c0a019f647108f5fe02f9c59ac164d56f5694fc3faf4d","affectsGlobalScope":true},"e7dbf5716d76846c7522e910896c5747b6df1abd538fee8f5291bdc843461795",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"b510d0a18e3db42ac9765d26711083ec1e8b4e21caaca6dc4d25ae6e8623f447","48e4ab4540aa291062a9f5b223dd5cebde35c2a9a7007d99b91d77e71d4266dc","a5aaeca001d2f69093d04aac4db321e4c338fd9b20cbc4f0b0af3dc6ae0f235b","7a1f3d0b8dd0e869c58b44848d9f0be3592c3ff6dc77091e7130306f6d2907ed","8041cfce439ff29d339742389de04c136e3029d6b1817f07b2d7fcbfb7534990","670a76db379b27c8ff42f1ba927828a22862e2ab0b0908e38b671f0e912cc5ed","29a46d003ca3c721e6405f00dee7e3de91b14e09701eba5d887bf76fb2d47d38","069bebfee29864e3955378107e243508b163e77ab10de6a5ee03ae06939f0bb9","ee7d8894904b465b072be0d2e4b45cf6b887cdba16a467645c4e200982ece7ea","963d59066dd6742da1918a6213a209bcc205b8ee53b1876ee2b4e6d80f97c85e","fd326577c62145816fe1acc306c734c2396487f76719d3785d4e825b34540b33","afe73051ff6a03a9565cbd8ebb0e956ee3df5e913ad5c1ded64218aabfa3dcb5","035a5df183489c2e22f3cf59fc1ed2b043d27f357eecc0eb8d8e840059d44245","a4809f4d92317535e6b22b01019437030077a76fec1d93b9881c9ed4738fcc54","5f53fa0bd22096d2a78533f94e02c899143b8f0f9891a46965294ee8b91a9434","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","462bccdf75fcafc1ae8c30400c9425e1a4681db5d605d1a0edb4f990a54d8094","5923d8facbac6ecf7c84739a5c701a57af94a6f6648d6229a6c768cf28f0f8cb","7adecb2c3238794c378d336a8182d4c3dd2c4fa6fa1785e2797a3db550edea62","dc12dc0e5aa06f4e1a7692149b78f89116af823b9e1f1e4eae140cd3e0e674e6","1bfc6565b90c8771615cd8cfcf9b36efc0275e5e83ac7d9181307e96eb495161","8a8a96898906f065f296665e411f51010b51372fa260d5373bf9f64356703190",{"version":"6ff2ca51e2c9d88d6d904c481879b12ec0cad2a69b88e220859a52207444773b","affectsGlobalScope":true},"b3338366fe1f2c5f978e2ec200f57d35c5bd2c4c90c2191f1e638cfa5621c1f6","01874fd864224a92c6e93a431f432ee6a2bb30c9da41bbb9b3030fd6891fa032","22f93f14b0c14e882bde0f7681f3c713d29c6471cfec9cd6428e8cc2ef5e32e8","d88a5e779faf033be3d52142a04fbe1cb96009868e3bbdd296b2bc6c59e06c0e","fedd311d427fdafac411b4e0edc0d1014668853679e021e04717a6de45ff5c0c","191a86aef5e87c7ce1cb42f17d8d3fbe66f74dff7e396b1f0cff124cc66ae97d","ab82804a14454734010dcdcd43f564ff7b0389bee4c5692eec76ff5b30d4cf66","98cbca6c3c5b2f8d1469dcee88c13304b6cb149fb057ec3b8a85f2e39ff1fc84",{"version":"f7a180f2b493af37ef8357ffc0cb10bb3e7a789dd2b798809f6e32096e9cce1a","affectsGlobalScope":true},"bae8d023ef6b23df7da26f51cea44321f95817c190342a36882e93b80d07a960","c3e5b75e1af87b8e67e12e21332e708f7eccee6aac6261cfe98ca36652cdcb53"],"options":{"allowSyntheticDefaultImports":true,"composite":true,"declaration":true,"declarationDir":"./","esModuleInterop":true,"module":1,"outDir":"./","skipLibCheck":true,"sourceMap":true,"strict":true,"target":1},"fileIdsList":[[150],[46,53,57,61,62,63,150],[150,159],[150,159,160,161,162,163],[150,159,161],[120,121,150,157,166],[121,150,157],[150,169],[150,170],[150,174,178],[123,150,157],[70,150],[107,150],[108,113,141,150],[109,120,121,128,138,149,150],[109,110,120,128,150],[111,150],[112,113,121,129,150],[113,138,146,150],[114,116,120,128,150],[115,150],[116,117,150],[120,150],[118,120,150],[107,120,150],[120,121,122,138,149,150],[120,121,122,135,138,141,150],[105,150,154],[116,120,123,128,138,149,150],[120,121,123,124,128,138,146,149,150],[123,125,138,146,149,150],[70,71,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156],[120,126,150],[127,149,150,154],[116,120,128,138,150],[129,150],[130,150],[107,131,150],[132,148,150,154],[133,150],[134,150],[120,135,136,150],[135,137,150,152],[108,120,138,139,140,141,150],[108,138,140,150],[138,139,150],[141,150],[142,150],[107,138,150],[120,144,145,150],[144,145,150],[113,128,138,146,150],[147,150],[128,148,150],[108,123,134,149,150],[113,150],[138,150,151],[127,150,152],[150,153],[108,113,120,122,131,138,149,150,152,154],[138,150,155],[150,189],[150,172,175],[150,172,175,176,177],[150,174],[150,173],[82,86,149,150],[82,138,149,150],[77,150],[79,82,146,149,150],[128,146,150],[150,157],[77,150,157],[79,82,128,149,150],[74,75,78,81,108,120,138,149,150],[74,80,150],[78,82,108,141,149,150,157],[108,150,157],[98,108,150,157],[76,77,150,157],[82,150],[76,77,78,79,80,81,82,83,84,86,87,88,89,90,91,92,93,94,95,96,97,99,100,101,102,103,104,150],[82,89,90,150],[80,82,90,91,150],[81,150],[74,77,82,150],[82,86,90,91,150],[86,150],[80,82,85,149,150],[74,79,80,82,86,89,150],[108,138,150],[77,82,98,108,150,154,157],[62,150],[43,44,45,46,49,50,51,52,53,54,55,56,57,58,59,60,61,123,150,158],[50,51,150],[54,123,150],[43,150],[44,150],[47,48,150],[53,62,150],[59,149,150],[149,150],[46,53,57,61,62,63],[43,46,51,52,53,55,57,61,123],[123],[62],[53,62],[149]],"referencedMap":[[72,1],[64,2],[161,3],[159,1],[164,4],[160,3],[162,5],[163,3],[165,1],[167,6],[168,7],[169,1],[170,8],[171,9],[179,10],[180,1],[181,1],[166,1],[182,11],[70,12],[71,12],[107,13],[108,14],[109,15],[110,16],[111,17],[112,18],[113,19],[114,20],[115,21],[116,22],[117,22],[119,23],[118,24],[120,25],[121,26],[122,27],[106,28],[156,1],[123,29],[124,30],[125,31],[157,32],[126,33],[127,34],[128,35],[129,36],[130,37],[131,38],[132,39],[133,40],[134,41],[135,42],[136,42],[137,43],[138,44],[140,45],[139,46],[141,47],[142,48],[143,49],[144,50],[145,51],[146,52],[147,53],[148,54],[149,55],[150,56],[151,57],[152,58],[153,59],[154,60],[155,61],[183,1],[184,1],[185,1],[186,1],[187,1],[188,1],[189,1],[190,62],[73,1],[172,1],[176,63],[178,64],[177,63],[175,65],[174,66],[173,1],[8,1],[10,1],[9,1],[2,1],[11,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[3,1],[4,1],[22,1],[19,1],[20,1],[21,1],[23,1],[24,1],[25,1],[5,1],[26,1],[27,1],[28,1],[29,1],[6,1],[33,1],[30,1],[31,1],[32,1],[34,1],[7,1],[35,1],[40,1],[41,1],[36,1],[37,1],[38,1],[39,1],[1,1],[42,1],[89,67],[96,68],[88,67],[103,69],[80,70],[79,71],[102,72],[97,73],[100,74],[82,75],[81,76],[77,77],[76,78],[99,79],[78,80],[83,81],[84,1],[87,81],[74,1],[105,82],[104,81],[91,83],[92,84],[94,85],[90,86],[93,87],[98,72],[85,88],[86,89],[95,90],[75,91],[101,92],[45,1],[65,93],[62,94],[52,95],[55,96],[46,1],[47,97],[67,98],[44,1],[63,93],[50,1],[49,99],[68,1],[54,1],[43,1],[56,1],[48,1],[51,1],[60,1],[58,1],[61,1],[57,100],[53,1],[69,1],[66,101],[59,102],[158,72]],"exportedModulesMap":[[72,1],[64,103],[161,3],[159,1],[164,4],[160,3],[162,5],[163,3],[165,1],[167,6],[168,7],[169,1],[170,8],[171,9],[179,10],[180,1],[181,1],[166,1],[182,11],[70,12],[71,12],[107,13],[108,14],[109,15],[110,16],[111,17],[112,18],[113,19],[114,20],[115,21],[116,22],[117,22],[119,23],[118,24],[120,25],[121,26],[122,27],[106,28],[156,1],[123,29],[124,30],[125,31],[157,32],[126,33],[127,34],[128,35],[129,36],[130,37],[131,38],[132,39],[133,40],[134,41],[135,42],[136,42],[137,43],[138,44],[140,45],[139,46],[141,47],[142,48],[143,49],[144,50],[145,51],[146,52],[147,53],[148,54],[149,55],[150,56],[151,57],[152,58],[153,59],[154,60],[155,61],[183,1],[184,1],[185,1],[186,1],[187,1],[188,1],[189,1],[190,62],[73,1],[172,1],[176,63],[178,64],[177,63],[175,65],[174,66],[173,1],[8,1],[10,1],[9,1],[2,1],[11,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[3,1],[4,1],[22,1],[19,1],[20,1],[21,1],[23,1],[24,1],[25,1],[5,1],[26,1],[27,1],[28,1],[29,1],[6,1],[33,1],[30,1],[31,1],[32,1],[34,1],[7,1],[35,1],[40,1],[41,1],[36,1],[37,1],[38,1],[39,1],[1,1],[42,1],[89,67],[96,68],[88,67],[103,69],[80,70],[79,71],[102,72],[97,73],[100,74],[82,75],[81,76],[77,77],[76,78],[99,79],[78,80],[83,81],[84,1],[87,81],[74,1],[105,82],[104,81],[91,83],[92,84],[94,85],[90,86],[93,87],[98,72],[85,88],[86,89],[95,90],[75,91],[101,92],[62,104],[55,105],[63,106],[57,107],[69,1],[59,108],[158,72]],"semanticDiagnosticsPerFile":[72,64,161,159,164,160,162,163,165,167,168,169,170,171,179,180,181,166,182,70,71,107,108,109,110,111,112,113,114,115,116,117,119,118,120,121,122,106,156,123,124,125,157,126,127,128,129,130,131,132,133,134,135,136,137,138,140,139,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,183,184,185,186,187,188,189,190,73,172,176,178,177,175,174,173,8,10,9,2,11,12,13,14,15,16,17,18,3,4,22,19,20,21,23,24,25,5,26,27,28,29,6,33,30,31,32,34,7,35,40,41,36,37,38,39,1,42,89,96,88,103,80,79,102,97,100,82,81,77,76,99,78,83,84,87,74,105,104,91,92,94,90,93,98,85,86,95,75,101,45,65,62,52,55,46,47,67,44,63,50,49,68,54,43,56,48,51,60,58,61,57,53,69,66,59,158],"latestChangedDtsFile":"./src/classes/observable.class.d.ts"},"version":"4.9.5"}
|
package/jest.config.ts
CHANGED
|
@@ -117,9 +117,7 @@ export default {
|
|
|
117
117
|
// rootDir: undefined,
|
|
118
118
|
|
|
119
119
|
// A list of paths to directories that Jest should use to search for files in
|
|
120
|
-
|
|
121
|
-
// "<rootDir>"
|
|
122
|
-
// ],
|
|
120
|
+
roots: ['src'],
|
|
123
121
|
|
|
124
122
|
// Allows you to use a custom runner instead of Jest's default test runner
|
|
125
123
|
// runner: "jest-runner",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@builder.io/sdk",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.36-0",
|
|
4
4
|
"unpkg": "./dist/index.browser.js",
|
|
5
5
|
"main": "./dist/index.cjs.js",
|
|
6
6
|
"module": "./dist/index.esm.js",
|
|
@@ -11,21 +11,20 @@
|
|
|
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": "
|
|
27
|
-
"
|
|
28
|
-
"ci:build": "npm run build",
|
|
23
|
+
"release": "yarn run build && 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
|
+
"ci:build": "yarn run build",
|
|
29
28
|
"test": "jest --color"
|
|
30
29
|
},
|
|
31
30
|
"devDependencies": {
|
|
@@ -55,17 +54,20 @@
|
|
|
55
54
|
"rollup-plugin-node-globals": "^1.3.0",
|
|
56
55
|
"rollup-plugin-node-resolve": "^3.3.0",
|
|
57
56
|
"rollup-plugin-sourcemaps": "^0.4.2",
|
|
58
|
-
"rollup-plugin-
|
|
59
|
-
"rollup-plugin-typescript2": "^0.13.0",
|
|
57
|
+
"rollup-plugin-typescript2": "^0.32.1",
|
|
60
58
|
"rollup-plugin-uglify": "^3.0.0",
|
|
59
|
+
"ts-node": "^10.9.2",
|
|
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
|
}
|