@jsii/runtime 1.69.0 → 1.71.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/lib/host.js +4 -1
- package/package.json +8 -8
- package/webpack/bin/jsii-runtime.js +81 -41
- package/webpack/lib/program.js +831 -263
package/lib/host.js
CHANGED
|
@@ -46,7 +46,10 @@ class KernelHost {
|
|
|
46
46
|
if ('complete' in completeReq &&
|
|
47
47
|
completeReq.complete.cbid === callback.cbid) {
|
|
48
48
|
if (completeReq.complete.err) {
|
|
49
|
-
|
|
49
|
+
if (completeReq.complete.name === "@jsii/kernel.Fault" /* JsiiErrorType.JSII_FAULT */) {
|
|
50
|
+
throw new kernel_1.JsiiFault(completeReq.complete.err);
|
|
51
|
+
}
|
|
52
|
+
throw new kernel_1.RuntimeError(completeReq.complete.err);
|
|
50
53
|
}
|
|
51
54
|
return completeReq.complete.result;
|
|
52
55
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jsii/runtime",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.71.0",
|
|
4
4
|
"description": "jsii runtime kernel process",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": {
|
|
@@ -34,16 +34,16 @@
|
|
|
34
34
|
"package": "package-js"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@jsii/kernel": "^1.
|
|
38
|
-
"@jsii/check-node": "1.
|
|
39
|
-
"@jsii/spec": "^1.
|
|
37
|
+
"@jsii/kernel": "^1.71.0",
|
|
38
|
+
"@jsii/check-node": "1.71.0",
|
|
39
|
+
"@jsii/spec": "^1.71.0"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
|
-
"@scope/jsii-calc-base": "^1.
|
|
43
|
-
"@scope/jsii-calc-lib": "^1.
|
|
44
|
-
"jsii-build-tools": "^1.
|
|
42
|
+
"@scope/jsii-calc-base": "^1.71.0",
|
|
43
|
+
"@scope/jsii-calc-lib": "^1.71.0",
|
|
44
|
+
"jsii-build-tools": "^1.71.0",
|
|
45
45
|
"jsii-calc": "^3.20.120",
|
|
46
|
-
"source-map-loader": "^4.0.
|
|
46
|
+
"source-map-loader": "^4.0.1",
|
|
47
47
|
"webpack": "^5.74.0",
|
|
48
48
|
"webpack-cli": "^4.10.0"
|
|
49
49
|
}
|
|
@@ -2624,51 +2624,91 @@ var __webpack_modules__ = {
|
|
|
2624
2624
|
},
|
|
2625
2625
|
6027: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
2626
2626
|
const internalRe = __webpack_require__(9541);
|
|
2627
|
+
const constants = __webpack_require__(9041);
|
|
2628
|
+
const SemVer = __webpack_require__(3013);
|
|
2629
|
+
const identifiers = __webpack_require__(3650);
|
|
2630
|
+
const parse = __webpack_require__(7507);
|
|
2631
|
+
const valid = __webpack_require__(2555);
|
|
2632
|
+
const clean = __webpack_require__(3470);
|
|
2633
|
+
const inc = __webpack_require__(5210);
|
|
2634
|
+
const diff = __webpack_require__(5209);
|
|
2635
|
+
const major = __webpack_require__(5847);
|
|
2636
|
+
const minor = __webpack_require__(1757);
|
|
2637
|
+
const patch = __webpack_require__(8150);
|
|
2638
|
+
const prerelease = __webpack_require__(8011);
|
|
2639
|
+
const compare = __webpack_require__(2247);
|
|
2640
|
+
const rcompare = __webpack_require__(9201);
|
|
2641
|
+
const compareLoose = __webpack_require__(2310);
|
|
2642
|
+
const compareBuild = __webpack_require__(6845);
|
|
2643
|
+
const sort = __webpack_require__(1934);
|
|
2644
|
+
const rsort = __webpack_require__(7391);
|
|
2645
|
+
const gt = __webpack_require__(6077);
|
|
2646
|
+
const lt = __webpack_require__(866);
|
|
2647
|
+
const eq = __webpack_require__(8443);
|
|
2648
|
+
const neq = __webpack_require__(1017);
|
|
2649
|
+
const gte = __webpack_require__(4578);
|
|
2650
|
+
const lte = __webpack_require__(698);
|
|
2651
|
+
const cmp = __webpack_require__(1918);
|
|
2652
|
+
const coerce = __webpack_require__(4115);
|
|
2653
|
+
const Comparator = __webpack_require__(7706);
|
|
2654
|
+
const Range = __webpack_require__(6833);
|
|
2655
|
+
const satisfies = __webpack_require__(8915);
|
|
2656
|
+
const toComparators = __webpack_require__(8378);
|
|
2657
|
+
const maxSatisfying = __webpack_require__(1678);
|
|
2658
|
+
const minSatisfying = __webpack_require__(1553);
|
|
2659
|
+
const minVersion = __webpack_require__(2262);
|
|
2660
|
+
const validRange = __webpack_require__(7396);
|
|
2661
|
+
const outside = __webpack_require__(939);
|
|
2662
|
+
const gtr = __webpack_require__(4933);
|
|
2663
|
+
const ltr = __webpack_require__(7233);
|
|
2664
|
+
const intersects = __webpack_require__(8842);
|
|
2665
|
+
const simplifyRange = __webpack_require__(3018);
|
|
2666
|
+
const subset = __webpack_require__(8563);
|
|
2627
2667
|
module.exports = {
|
|
2668
|
+
parse,
|
|
2669
|
+
valid,
|
|
2670
|
+
clean,
|
|
2671
|
+
inc,
|
|
2672
|
+
diff,
|
|
2673
|
+
major,
|
|
2674
|
+
minor,
|
|
2675
|
+
patch,
|
|
2676
|
+
prerelease,
|
|
2677
|
+
compare,
|
|
2678
|
+
rcompare,
|
|
2679
|
+
compareLoose,
|
|
2680
|
+
compareBuild,
|
|
2681
|
+
sort,
|
|
2682
|
+
rsort,
|
|
2683
|
+
gt,
|
|
2684
|
+
lt,
|
|
2685
|
+
eq,
|
|
2686
|
+
neq,
|
|
2687
|
+
gte,
|
|
2688
|
+
lte,
|
|
2689
|
+
cmp,
|
|
2690
|
+
coerce,
|
|
2691
|
+
Comparator,
|
|
2692
|
+
Range,
|
|
2693
|
+
satisfies,
|
|
2694
|
+
toComparators,
|
|
2695
|
+
maxSatisfying,
|
|
2696
|
+
minSatisfying,
|
|
2697
|
+
minVersion,
|
|
2698
|
+
validRange,
|
|
2699
|
+
outside,
|
|
2700
|
+
gtr,
|
|
2701
|
+
ltr,
|
|
2702
|
+
intersects,
|
|
2703
|
+
simplifyRange,
|
|
2704
|
+
subset,
|
|
2705
|
+
SemVer,
|
|
2628
2706
|
re: internalRe.re,
|
|
2629
2707
|
src: internalRe.src,
|
|
2630
2708
|
tokens: internalRe.t,
|
|
2631
|
-
SEMVER_SPEC_VERSION:
|
|
2632
|
-
|
|
2633
|
-
|
|
2634
|
-
rcompareIdentifiers: __webpack_require__(3650).rcompareIdentifiers,
|
|
2635
|
-
parse: __webpack_require__(7507),
|
|
2636
|
-
valid: __webpack_require__(2555),
|
|
2637
|
-
clean: __webpack_require__(3470),
|
|
2638
|
-
inc: __webpack_require__(5210),
|
|
2639
|
-
diff: __webpack_require__(5209),
|
|
2640
|
-
major: __webpack_require__(5847),
|
|
2641
|
-
minor: __webpack_require__(1757),
|
|
2642
|
-
patch: __webpack_require__(8150),
|
|
2643
|
-
prerelease: __webpack_require__(8011),
|
|
2644
|
-
compare: __webpack_require__(2247),
|
|
2645
|
-
rcompare: __webpack_require__(9201),
|
|
2646
|
-
compareLoose: __webpack_require__(2310),
|
|
2647
|
-
compareBuild: __webpack_require__(6845),
|
|
2648
|
-
sort: __webpack_require__(1934),
|
|
2649
|
-
rsort: __webpack_require__(7391),
|
|
2650
|
-
gt: __webpack_require__(6077),
|
|
2651
|
-
lt: __webpack_require__(866),
|
|
2652
|
-
eq: __webpack_require__(8443),
|
|
2653
|
-
neq: __webpack_require__(1017),
|
|
2654
|
-
gte: __webpack_require__(4578),
|
|
2655
|
-
lte: __webpack_require__(698),
|
|
2656
|
-
cmp: __webpack_require__(1918),
|
|
2657
|
-
coerce: __webpack_require__(4115),
|
|
2658
|
-
Comparator: __webpack_require__(7706),
|
|
2659
|
-
Range: __webpack_require__(6833),
|
|
2660
|
-
satisfies: __webpack_require__(8915),
|
|
2661
|
-
toComparators: __webpack_require__(8378),
|
|
2662
|
-
maxSatisfying: __webpack_require__(1678),
|
|
2663
|
-
minSatisfying: __webpack_require__(1553),
|
|
2664
|
-
minVersion: __webpack_require__(2262),
|
|
2665
|
-
validRange: __webpack_require__(7396),
|
|
2666
|
-
outside: __webpack_require__(939),
|
|
2667
|
-
gtr: __webpack_require__(4933),
|
|
2668
|
-
ltr: __webpack_require__(7233),
|
|
2669
|
-
intersects: __webpack_require__(8842),
|
|
2670
|
-
simplifyRange: __webpack_require__(3018),
|
|
2671
|
-
subset: __webpack_require__(8563)
|
|
2709
|
+
SEMVER_SPEC_VERSION: constants.SEMVER_SPEC_VERSION,
|
|
2710
|
+
compareIdentifiers: identifiers.compareIdentifiers,
|
|
2711
|
+
rcompareIdentifiers: identifiers.rcompareIdentifiers
|
|
2672
2712
|
};
|
|
2673
2713
|
},
|
|
2674
2714
|
9041: module => {
|