@jsii/runtime 1.81.0 → 1.82.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 +9 -9
- package/webpack/bin/jsii-runtime.js +1 -5
- package/webpack/lib/program.js +13 -13
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jsii/runtime",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.82.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.82.0",
|
|
38
|
+
"@jsii/check-node": "1.82.0",
|
|
39
|
+
"@jsii/spec": "^1.82.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.82.0",
|
|
43
|
+
"@scope/jsii-calc-lib": "^1.82.0",
|
|
44
|
+
"jsii-build-tools": "^1.82.0",
|
|
45
45
|
"jsii-calc": "^3.20.120",
|
|
46
46
|
"source-map-loader": "^4.0.1",
|
|
47
|
-
"webpack": "^5.
|
|
48
|
-
"webpack-cli": "^5.
|
|
47
|
+
"webpack": "^5.82.1",
|
|
48
|
+
"webpack-cli": "^5.1.1"
|
|
49
49
|
}
|
|
50
50
|
}
|
|
@@ -1905,7 +1905,7 @@ var __webpack_modules__ = {
|
|
|
1905
1905
|
version = version.version;
|
|
1906
1906
|
}
|
|
1907
1907
|
} else if (typeof version !== "string") {
|
|
1908
|
-
throw new TypeError(`Invalid
|
|
1908
|
+
throw new TypeError(`Invalid version. Must be a string. Got type "${typeof version}".`);
|
|
1909
1909
|
}
|
|
1910
1910
|
if (version.length > MAX_LENGTH) {
|
|
1911
1911
|
throw new TypeError(`version is longer than ${MAX_LENGTH} characters`);
|
|
@@ -3887,10 +3887,6 @@ var __webpack_modules__ = {
|
|
|
3887
3887
|
6224: module => {
|
|
3888
3888
|
"use strict";
|
|
3889
3889
|
module.exports = require("tty");
|
|
3890
|
-
},
|
|
3891
|
-
3837: module => {
|
|
3892
|
-
"use strict";
|
|
3893
|
-
module.exports = require("util");
|
|
3894
3890
|
}
|
|
3895
3891
|
};
|
|
3896
3892
|
|
package/webpack/lib/program.js
CHANGED
|
@@ -4864,7 +4864,7 @@ var __webpack_modules__ = {
|
|
|
4864
4864
|
const {hasOwnProperty} = Object.prototype;
|
|
4865
4865
|
module.exports = s => {
|
|
4866
4866
|
if (!hasOwnProperty.call(normalizeCache, s)) {
|
|
4867
|
-
normalizeCache[s] = s.normalize("
|
|
4867
|
+
normalizeCache[s] = s.normalize("NFD");
|
|
4868
4868
|
}
|
|
4869
4869
|
return normalizeCache[s];
|
|
4870
4870
|
};
|
|
@@ -4887,7 +4887,7 @@ var __webpack_modules__ = {
|
|
|
4887
4887
|
this.piped = false;
|
|
4888
4888
|
}
|
|
4889
4889
|
}
|
|
4890
|
-
const
|
|
4890
|
+
const {Minipass} = __webpack_require__(3201);
|
|
4891
4891
|
const zlib = __webpack_require__(3704);
|
|
4892
4892
|
const ReadEntry = __webpack_require__(7847);
|
|
4893
4893
|
const WriteEntry = __webpack_require__(8418);
|
|
@@ -4919,7 +4919,7 @@ var __webpack_modules__ = {
|
|
|
4919
4919
|
const path = __webpack_require__(4822);
|
|
4920
4920
|
const warner = __webpack_require__(8783);
|
|
4921
4921
|
const normPath = __webpack_require__(4240);
|
|
4922
|
-
const Pack = warner(class Pack extends
|
|
4922
|
+
const Pack = warner(class Pack extends Minipass {
|
|
4923
4923
|
constructor(opt) {
|
|
4924
4924
|
super(opt);
|
|
4925
4925
|
opt = opt || Object.create(null);
|
|
@@ -5717,7 +5717,7 @@ var __webpack_modules__ = {
|
|
|
5717
5717
|
return true;
|
|
5718
5718
|
};
|
|
5719
5719
|
const reserve = (paths, fn) => {
|
|
5720
|
-
paths = isWindows ? [ "win32 parallelization disabled" ] : paths.map((p =>
|
|
5720
|
+
paths = isWindows ? [ "win32 parallelization disabled" ] : paths.map((p => stripSlashes(join(normalize(p))).toLowerCase()));
|
|
5721
5721
|
const dirs = new Set(paths.map((path => getDirs(path))).reduce(((a, b) => a.concat(b))));
|
|
5722
5722
|
reservations.set(fn, {
|
|
5723
5723
|
dirs,
|
|
@@ -5845,10 +5845,10 @@ var __webpack_modules__ = {
|
|
|
5845
5845
|
},
|
|
5846
5846
|
7847: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
5847
5847
|
"use strict";
|
|
5848
|
-
const
|
|
5848
|
+
const {Minipass} = __webpack_require__(3201);
|
|
5849
5849
|
const normPath = __webpack_require__(4240);
|
|
5850
5850
|
const SLURP = Symbol("slurp");
|
|
5851
|
-
module.exports = class ReadEntry extends
|
|
5851
|
+
module.exports = class ReadEntry extends Minipass {
|
|
5852
5852
|
constructor(header, ex, gex) {
|
|
5853
5853
|
super();
|
|
5854
5854
|
this.pause();
|
|
@@ -6226,7 +6226,7 @@ var __webpack_modules__ = {
|
|
|
6226
6226
|
fs.unlinkSync(name);
|
|
6227
6227
|
};
|
|
6228
6228
|
const uint32 = (a, b, c) => a === a >>> 0 ? a : b === b >>> 0 ? b : c;
|
|
6229
|
-
const cacheKeyNormalize = path =>
|
|
6229
|
+
const cacheKeyNormalize = path => stripSlash(normPath(normalize(path))).toLowerCase();
|
|
6230
6230
|
const pruneCache = (cache, abs) => {
|
|
6231
6231
|
abs = cacheKeyNormalize(abs);
|
|
6232
6232
|
for (const path of cache.keys()) {
|
|
@@ -6897,7 +6897,7 @@ var __webpack_modules__ = {
|
|
|
6897
6897
|
},
|
|
6898
6898
|
8418: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
6899
6899
|
"use strict";
|
|
6900
|
-
const
|
|
6900
|
+
const {Minipass} = __webpack_require__(3201);
|
|
6901
6901
|
const Pax = __webpack_require__(9154);
|
|
6902
6902
|
const Header = __webpack_require__(5017);
|
|
6903
6903
|
const fs = __webpack_require__(7147);
|
|
@@ -6935,7 +6935,7 @@ var __webpack_modules__ = {
|
|
|
6935
6935
|
const winchars = __webpack_require__(6564);
|
|
6936
6936
|
const stripAbsolutePath = __webpack_require__(6014);
|
|
6937
6937
|
const modeFix = __webpack_require__(9574);
|
|
6938
|
-
const WriteEntry = warner(class WriteEntry extends
|
|
6938
|
+
const WriteEntry = warner(class WriteEntry extends Minipass {
|
|
6939
6939
|
constructor(p, opt) {
|
|
6940
6940
|
opt = opt || {};
|
|
6941
6941
|
super(opt);
|
|
@@ -7249,7 +7249,7 @@ var __webpack_modules__ = {
|
|
|
7249
7249
|
cb();
|
|
7250
7250
|
}
|
|
7251
7251
|
}
|
|
7252
|
-
const WriteEntryTar = warner(class WriteEntryTar extends
|
|
7252
|
+
const WriteEntryTar = warner(class WriteEntryTar extends Minipass {
|
|
7253
7253
|
constructor(readEntry, opt) {
|
|
7254
7254
|
opt = opt || {};
|
|
7255
7255
|
super(opt);
|
|
@@ -7352,7 +7352,7 @@ var __webpack_modules__ = {
|
|
|
7352
7352
|
const getType = stat => stat.isFile() ? "File" : stat.isDirectory() ? "Directory" : stat.isSymbolicLink() ? "SymbolicLink" : "Unsupported";
|
|
7353
7353
|
module.exports = WriteEntry;
|
|
7354
7354
|
},
|
|
7355
|
-
3201: (
|
|
7355
|
+
3201: (__unused_webpack_module, exports, __webpack_require__) => {
|
|
7356
7356
|
"use strict";
|
|
7357
7357
|
const proc = typeof process === "object" && process ? process : {
|
|
7358
7358
|
stdout: null,
|
|
@@ -7854,7 +7854,7 @@ var __webpack_modules__ = {
|
|
|
7854
7854
|
return !!s && (s instanceof Minipass || s instanceof Stream || s instanceof EE && (typeof s.pipe === "function" || typeof s.write === "function" && typeof s.end === "function"));
|
|
7855
7855
|
}
|
|
7856
7856
|
}
|
|
7857
|
-
|
|
7857
|
+
exports.Minipass = Minipass;
|
|
7858
7858
|
},
|
|
7859
7859
|
3459: (__unused_webpack_module, exports) => {
|
|
7860
7860
|
"use strict";
|
|
@@ -17312,7 +17312,7 @@ var __webpack_modules__ = {
|
|
|
17312
17312
|
},
|
|
17313
17313
|
4147: module => {
|
|
17314
17314
|
"use strict";
|
|
17315
|
-
module.exports = JSON.parse('{"name":"@jsii/runtime","version":"1.
|
|
17315
|
+
module.exports = JSON.parse('{"name":"@jsii/runtime","version":"1.82.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.6.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 . --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.82.0","@jsii/check-node":"1.82.0","@jsii/spec":"^1.82.0"},"devDependencies":{"@scope/jsii-calc-base":"^1.82.0","@scope/jsii-calc-lib":"^1.82.0","jsii-build-tools":"^1.82.0","jsii-calc":"^3.20.120","source-map-loader":"^4.0.1","webpack":"^5.82.1","webpack-cli":"^5.1.1"}}');
|
|
17316
17316
|
},
|
|
17317
17317
|
5277: module => {
|
|
17318
17318
|
"use strict";
|