@jsii/runtime 1.78.1 → 1.80.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 +7 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jsii/runtime",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.80.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.80.0",
|
|
38
|
+
"@jsii/check-node": "1.80.0",
|
|
39
|
+
"@jsii/spec": "^1.80.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.80.0",
|
|
43
|
+
"@scope/jsii-calc-lib": "^1.80.0",
|
|
44
|
+
"jsii-build-tools": "^1.80.0",
|
|
45
45
|
"jsii-calc": "^3.20.120",
|
|
46
46
|
"source-map-loader": "^4.0.1",
|
|
47
|
-
"webpack": "^5.
|
|
47
|
+
"webpack": "^5.76.3",
|
|
48
48
|
"webpack-cli": "^5.0.1"
|
|
49
49
|
}
|
|
50
50
|
}
|
package/webpack/lib/program.js
CHANGED
|
@@ -2378,7 +2378,7 @@ var __webpack_modules__ = {
|
|
|
2378
2378
|
var start = Date.now();
|
|
2379
2379
|
var backoff = 0;
|
|
2380
2380
|
fs$rename(from, to, (function CB(er) {
|
|
2381
|
-
if (er && (er.code === "EACCES" || er.code === "EPERM") && Date.now() - start < 6e4) {
|
|
2381
|
+
if (er && (er.code === "EACCES" || er.code === "EPERM" || er.code === "EBUSY") && Date.now() - start < 6e4) {
|
|
2382
2382
|
setTimeout((function() {
|
|
2383
2383
|
fs.stat(to, (function(stater, st) {
|
|
2384
2384
|
if (stater && stater.code === "ENOENT") fs$rename(from, to, CB); else cb(er);
|
|
@@ -7765,12 +7765,14 @@ var __webpack_modules__ = {
|
|
|
7765
7765
|
const onerr = er => {
|
|
7766
7766
|
this.removeListener("data", ondata);
|
|
7767
7767
|
this.removeListener("end", onend);
|
|
7768
|
+
this.removeListener(DESTROYED, ondestroy);
|
|
7768
7769
|
stop();
|
|
7769
7770
|
reject(er);
|
|
7770
7771
|
};
|
|
7771
7772
|
const ondata = value => {
|
|
7772
7773
|
this.removeListener("error", onerr);
|
|
7773
7774
|
this.removeListener("end", onend);
|
|
7775
|
+
this.removeListener(DESTROYED, ondestroy);
|
|
7774
7776
|
this.pause();
|
|
7775
7777
|
resolve({
|
|
7776
7778
|
value,
|
|
@@ -7780,6 +7782,7 @@ var __webpack_modules__ = {
|
|
|
7780
7782
|
const onend = () => {
|
|
7781
7783
|
this.removeListener("error", onerr);
|
|
7782
7784
|
this.removeListener("data", ondata);
|
|
7785
|
+
this.removeListener(DESTROYED, ondestroy);
|
|
7783
7786
|
stop();
|
|
7784
7787
|
resolve({
|
|
7785
7788
|
done: true
|
|
@@ -7809,6 +7812,7 @@ var __webpack_modules__ = {
|
|
|
7809
7812
|
const stop = () => {
|
|
7810
7813
|
this.pause();
|
|
7811
7814
|
this.removeListener(ERROR, stop);
|
|
7815
|
+
this.removeListener(DESTROYED, stop);
|
|
7812
7816
|
this.removeListener("end", stop);
|
|
7813
7817
|
stopped = true;
|
|
7814
7818
|
return {
|
|
@@ -7824,6 +7828,7 @@ var __webpack_modules__ = {
|
|
|
7824
7828
|
};
|
|
7825
7829
|
this.once("end", stop);
|
|
7826
7830
|
this.once(ERROR, stop);
|
|
7831
|
+
this.once(DESTROYED, stop);
|
|
7827
7832
|
return {
|
|
7828
7833
|
next,
|
|
7829
7834
|
throw: stop,
|
|
@@ -17307,7 +17312,7 @@ var __webpack_modules__ = {
|
|
|
17307
17312
|
},
|
|
17308
17313
|
4147: module => {
|
|
17309
17314
|
"use strict";
|
|
17310
|
-
module.exports = JSON.parse('{"name":"@jsii/runtime","version":"1.
|
|
17315
|
+
module.exports = JSON.parse('{"name":"@jsii/runtime","version":"1.80.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.80.0","@jsii/check-node":"1.80.0","@jsii/spec":"^1.80.0"},"devDependencies":{"@scope/jsii-calc-base":"^1.80.0","@scope/jsii-calc-lib":"^1.80.0","jsii-build-tools":"^1.80.0","jsii-calc":"^3.20.120","source-map-loader":"^4.0.1","webpack":"^5.76.3","webpack-cli":"^5.0.1"}}');
|
|
17311
17316
|
},
|
|
17312
17317
|
5277: module => {
|
|
17313
17318
|
"use strict";
|