@jsii/runtime 1.104.0 → 1.105.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/package.json +8 -8
- package/webpack/lib/program.js +30 -36
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jsii/runtime",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.105.0",
|
|
4
4
|
"description": "jsii runtime kernel process",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": {
|
|
@@ -34,17 +34,17 @@
|
|
|
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.105.0",
|
|
38
|
+
"@jsii/check-node": "1.105.0",
|
|
39
|
+
"@jsii/spec": "^1.105.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.105.0",
|
|
43
|
+
"@scope/jsii-calc-lib": "^1.105.0",
|
|
44
|
+
"jsii-build-tools": "^1.105.0",
|
|
45
45
|
"jsii-calc": "^3.20.120",
|
|
46
46
|
"source-map-loader": "^5.0.0",
|
|
47
|
-
"webpack": "^5.
|
|
47
|
+
"webpack": "^5.96.1",
|
|
48
48
|
"webpack-cli": "^5.1.4"
|
|
49
49
|
}
|
|
50
50
|
}
|
package/webpack/lib/program.js
CHANGED
|
@@ -16620,8 +16620,7 @@ var __webpack_modules__ = {
|
|
|
16620
16620
|
}
|
|
16621
16621
|
}
|
|
16622
16622
|
if (options.reference !== "suffix" && components.scheme) {
|
|
16623
|
-
uriTokens.push(components.scheme);
|
|
16624
|
-
uriTokens.push(":");
|
|
16623
|
+
uriTokens.push(components.scheme, ":");
|
|
16625
16624
|
}
|
|
16626
16625
|
const authority = recomposeAuthority(components, options);
|
|
16627
16626
|
if (authority !== undefined) {
|
|
@@ -16644,12 +16643,10 @@ var __webpack_modules__ = {
|
|
|
16644
16643
|
uriTokens.push(s);
|
|
16645
16644
|
}
|
|
16646
16645
|
if (components.query !== undefined) {
|
|
16647
|
-
uriTokens.push("?");
|
|
16648
|
-
uriTokens.push(components.query);
|
|
16646
|
+
uriTokens.push("?", components.query);
|
|
16649
16647
|
}
|
|
16650
16648
|
if (components.fragment !== undefined) {
|
|
16651
|
-
uriTokens.push("#");
|
|
16652
|
-
uriTokens.push(components.fragment);
|
|
16649
|
+
uriTokens.push("#", components.fragment);
|
|
16653
16650
|
}
|
|
16654
16651
|
return uriTokens.join("");
|
|
16655
16652
|
}
|
|
@@ -16732,9 +16729,6 @@ var __webpack_modules__ = {
|
|
|
16732
16729
|
if (gotEncoding && parsed.scheme !== undefined) {
|
|
16733
16730
|
parsed.scheme = unescape(parsed.scheme);
|
|
16734
16731
|
}
|
|
16735
|
-
if (gotEncoding && parsed.userinfo !== undefined) {
|
|
16736
|
-
parsed.userinfo = unescape(parsed.userinfo);
|
|
16737
|
-
}
|
|
16738
16732
|
if (gotEncoding && parsed.host !== undefined) {
|
|
16739
16733
|
parsed.host = unescape(parsed.host);
|
|
16740
16734
|
}
|
|
@@ -17191,7 +17185,7 @@ var __webpack_modules__ = {
|
|
|
17191
17185
|
},
|
|
17192
17186
|
8330: module => {
|
|
17193
17187
|
"use strict";
|
|
17194
|
-
module.exports = JSON.parse('{"name":"@jsii/runtime","version":"1.
|
|
17188
|
+
module.exports = JSON.parse('{"name":"@jsii/runtime","version":"1.105.0","description":"jsii runtime kernel process","license":"Apache-2.0","author":{"name":"Amazon Web Services","url":"https://aws.amazon.com"},"homepage":"https://github.com/aws/jsii","bugs":{"url":"https://github.com/aws/jsii/issues"},"repository":{"type":"git","url":"https://github.com/aws/jsii.git","directory":"packages/@jsii/runtime"},"engines":{"node":">= 14.17.0"},"main":"lib/index.js","types":"lib/index.d.ts","bin":{"jsii-runtime":"bin/jsii-runtime"},"scripts":{"build":"tsc --build && chmod +x bin/jsii-runtime && npx webpack-cli && npm run lint","watch":"tsc --build -w","lint":"ESLINT_USE_FLAT_CONFIG=false eslint . --ext .js,.ts --ignore-path=.gitignore --ignore-pattern=webpack.config.js","lint:fix":"yarn lint --fix","test":"jest","test:update":"jest -u","package":"package-js"},"dependencies":{"@jsii/kernel":"^1.105.0","@jsii/check-node":"1.105.0","@jsii/spec":"^1.105.0"},"devDependencies":{"@scope/jsii-calc-base":"^1.105.0","@scope/jsii-calc-lib":"^1.105.0","jsii-build-tools":"^1.105.0","jsii-calc":"^3.20.120","source-map-loader":"^5.0.0","webpack":"^5.96.1","webpack-cli":"^5.1.4"}}');
|
|
17195
17189
|
},
|
|
17196
17190
|
9453: module => {
|
|
17197
17191
|
"use strict";
|
|
@@ -17230,38 +17224,38 @@ var __webpack_exports__ = {};
|
|
|
17230
17224
|
(() => {
|
|
17231
17225
|
"use strict";
|
|
17232
17226
|
var exports = __webpack_exports__;
|
|
17233
|
-
var
|
|
17234
|
-
var
|
|
17235
|
-
|
|
17227
|
+
var program_webpack_unused_export_;
|
|
17228
|
+
var program_a;
|
|
17229
|
+
program_webpack_unused_export_ = {
|
|
17236
17230
|
value: true
|
|
17237
17231
|
};
|
|
17238
|
-
const
|
|
17239
|
-
const
|
|
17240
|
-
const
|
|
17241
|
-
const
|
|
17242
|
-
const
|
|
17243
|
-
const
|
|
17244
|
-
const
|
|
17245
|
-
const
|
|
17246
|
-
const
|
|
17247
|
-
const
|
|
17248
|
-
const
|
|
17249
|
-
errorFD: (
|
|
17232
|
+
const program_packageInfo = __webpack_require__(8330);
|
|
17233
|
+
const program_host_1 = __webpack_require__(8623);
|
|
17234
|
+
const program_in_out_1 = __webpack_require__(6663);
|
|
17235
|
+
const program_sync_stdio_1 = __webpack_require__(7614);
|
|
17236
|
+
const program_name = program_packageInfo.name;
|
|
17237
|
+
const program_version = program_packageInfo.version;
|
|
17238
|
+
const program_noStack = !!process.env.JSII_NOSTACK;
|
|
17239
|
+
const program_debug = !!process.env.JSII_DEBUG;
|
|
17240
|
+
const program_debugTiming = !!process.env.JSII_DEBUG_TIMING;
|
|
17241
|
+
const program_validateAssemblies = !!process.env.JSII_VALIDATE_ASSEMBLIES;
|
|
17242
|
+
const program_stdio = new program_sync_stdio_1.SyncStdio({
|
|
17243
|
+
errorFD: (program_a = process.stderr.fd) !== null && program_a !== void 0 ? program_a : 2,
|
|
17250
17244
|
readFD: 3,
|
|
17251
17245
|
writeFD: 3
|
|
17252
17246
|
});
|
|
17253
|
-
const
|
|
17254
|
-
const
|
|
17255
|
-
debug,
|
|
17256
|
-
noStack,
|
|
17257
|
-
debugTiming,
|
|
17258
|
-
validateAssemblies
|
|
17247
|
+
const program_inout = new program_in_out_1.InputOutput(program_stdio);
|
|
17248
|
+
const program_host = new program_host_1.KernelHost(program_inout, {
|
|
17249
|
+
debug: program_debug,
|
|
17250
|
+
noStack: program_noStack,
|
|
17251
|
+
debugTiming: program_debugTiming,
|
|
17252
|
+
validateAssemblies: program_validateAssemblies
|
|
17259
17253
|
});
|
|
17260
|
-
|
|
17261
|
-
|
|
17262
|
-
hello: `${
|
|
17254
|
+
program_host.once("exit", process.exit.bind(process));
|
|
17255
|
+
program_inout.write({
|
|
17256
|
+
hello: `${program_name}@${program_version}`
|
|
17263
17257
|
});
|
|
17264
|
-
|
|
17265
|
-
|
|
17258
|
+
program_inout.debug = program_debug;
|
|
17259
|
+
program_host.run();
|
|
17266
17260
|
})();
|
|
17267
17261
|
//# sourceMappingURL=program.js.map
|