@aws-cdk/integ-runner 2.189.3 → 2.190.1
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/THIRD_PARTY_LICENSES +87 -87
- package/lib/index.js +11 -12
- package/lib/workers/extract/index.js +1726 -1524
- package/package.json +12 -12
package/lib/index.js
CHANGED
|
@@ -2789,7 +2789,7 @@ var require_polyfills = __commonJS({
|
|
|
2789
2789
|
};
|
|
2790
2790
|
}
|
|
2791
2791
|
if (platform === "win32") {
|
|
2792
|
-
fs3.rename = typeof fs3.rename !== "function" ? fs3.rename : function(fs$rename) {
|
|
2792
|
+
fs3.rename = typeof fs3.rename !== "function" ? fs3.rename : (function(fs$rename) {
|
|
2793
2793
|
function rename(from, to, cb) {
|
|
2794
2794
|
var start = Date.now();
|
|
2795
2795
|
var backoff = 0;
|
|
@@ -2813,9 +2813,9 @@ var require_polyfills = __commonJS({
|
|
|
2813
2813
|
__name(rename, "rename");
|
|
2814
2814
|
if (Object.setPrototypeOf) Object.setPrototypeOf(rename, fs$rename);
|
|
2815
2815
|
return rename;
|
|
2816
|
-
}(fs3.rename);
|
|
2816
|
+
})(fs3.rename);
|
|
2817
2817
|
}
|
|
2818
|
-
fs3.read = typeof fs3.read !== "function" ? fs3.read : function(fs$read) {
|
|
2818
|
+
fs3.read = typeof fs3.read !== "function" ? fs3.read : (function(fs$read) {
|
|
2819
2819
|
function read(fd, buffer, offset, length, position, callback_) {
|
|
2820
2820
|
var callback;
|
|
2821
2821
|
if (callback_ && typeof callback_ === "function") {
|
|
@@ -2833,8 +2833,8 @@ var require_polyfills = __commonJS({
|
|
|
2833
2833
|
__name(read, "read");
|
|
2834
2834
|
if (Object.setPrototypeOf) Object.setPrototypeOf(read, fs$read);
|
|
2835
2835
|
return read;
|
|
2836
|
-
}(fs3.read);
|
|
2837
|
-
fs3.readSync = typeof fs3.readSync !== "function" ? fs3.readSync : /* @__PURE__ */ function(fs$readSync) {
|
|
2836
|
+
})(fs3.read);
|
|
2837
|
+
fs3.readSync = typeof fs3.readSync !== "function" ? fs3.readSync : /* @__PURE__ */ (function(fs$readSync) {
|
|
2838
2838
|
return function(fd, buffer, offset, length, position) {
|
|
2839
2839
|
var eagCounter = 0;
|
|
2840
2840
|
while (true) {
|
|
@@ -2849,7 +2849,7 @@ var require_polyfills = __commonJS({
|
|
|
2849
2849
|
}
|
|
2850
2850
|
}
|
|
2851
2851
|
};
|
|
2852
|
-
}(fs3.readSync);
|
|
2852
|
+
})(fs3.readSync);
|
|
2853
2853
|
function patchLchmod(fs4) {
|
|
2854
2854
|
fs4.lchmod = function(path3, mode, callback) {
|
|
2855
2855
|
fs4.open(
|
|
@@ -3187,7 +3187,7 @@ var require_graceful_fs = __commonJS({
|
|
|
3187
3187
|
if (!fs3[gracefulQueue]) {
|
|
3188
3188
|
queue = global[gracefulQueue] || [];
|
|
3189
3189
|
publishQueue(fs3, queue);
|
|
3190
|
-
fs3.close = function(fs$close) {
|
|
3190
|
+
fs3.close = (function(fs$close) {
|
|
3191
3191
|
function close(fd, cb) {
|
|
3192
3192
|
return fs$close.call(fs3, fd, function(err) {
|
|
3193
3193
|
if (!err) {
|
|
@@ -3202,8 +3202,8 @@ var require_graceful_fs = __commonJS({
|
|
|
3202
3202
|
value: fs$close
|
|
3203
3203
|
});
|
|
3204
3204
|
return close;
|
|
3205
|
-
}(fs3.close);
|
|
3206
|
-
fs3.closeSync = function(fs$closeSync) {
|
|
3205
|
+
})(fs3.close);
|
|
3206
|
+
fs3.closeSync = (function(fs$closeSync) {
|
|
3207
3207
|
function closeSync(fd) {
|
|
3208
3208
|
fs$closeSync.apply(fs3, arguments);
|
|
3209
3209
|
resetQueue();
|
|
@@ -3213,7 +3213,7 @@ var require_graceful_fs = __commonJS({
|
|
|
3213
3213
|
value: fs$closeSync
|
|
3214
3214
|
});
|
|
3215
3215
|
return closeSync;
|
|
3216
|
-
}(fs3.closeSync);
|
|
3216
|
+
})(fs3.closeSync);
|
|
3217
3217
|
if (/\bgfs4\b/i.test(process.env.NODE_DEBUG || "")) {
|
|
3218
3218
|
process.on("exit", function() {
|
|
3219
3219
|
debug(fs3[gracefulQueue]);
|
|
@@ -5066,13 +5066,12 @@ var require_jsonfile = __commonJS({
|
|
|
5066
5066
|
return fs3.writeFileSync(file, str, options);
|
|
5067
5067
|
}
|
|
5068
5068
|
__name(writeFileSync, "writeFileSync");
|
|
5069
|
-
|
|
5069
|
+
module2.exports = {
|
|
5070
5070
|
readFile,
|
|
5071
5071
|
readFileSync: readFileSync2,
|
|
5072
5072
|
writeFile,
|
|
5073
5073
|
writeFileSync
|
|
5074
5074
|
};
|
|
5075
|
-
module2.exports = jsonfile;
|
|
5076
5075
|
}
|
|
5077
5076
|
});
|
|
5078
5077
|
|