@aws-cdk/integ-runner 2.178.2-alpha.0 → 2.180.0-alpha.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/THIRD_PARTY_LICENSES +20 -0
- package/lib/index.js +2 -2
- package/lib/recommended-feature-flags.json +2 -1
- package/lib/runner/runner-base.d.ts +1 -0
- package/lib/workers/extract/index.js +1378 -1274
- package/package.json +13 -12
package/THIRD_PARTY_LICENSES
CHANGED
|
@@ -768,6 +768,26 @@ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
|
|
|
768
768
|
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
769
769
|
|
|
770
770
|
|
|
771
|
+
----------------
|
|
772
|
+
|
|
773
|
+
** semver@7.7.1 - https://www.npmjs.com/package/semver/v/7.7.1 | ISC
|
|
774
|
+
The ISC License
|
|
775
|
+
|
|
776
|
+
Copyright (c) Isaac Z. Schlueter and Contributors
|
|
777
|
+
|
|
778
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
779
|
+
purpose with or without fee is hereby granted, provided that the above
|
|
780
|
+
copyright notice and this permission notice appear in all copies.
|
|
781
|
+
|
|
782
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
783
|
+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
784
|
+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
785
|
+
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
786
|
+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
787
|
+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
|
|
788
|
+
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
789
|
+
|
|
790
|
+
|
|
771
791
|
----------------
|
|
772
792
|
|
|
773
793
|
** slice-ansi@4.0.0 - https://www.npmjs.com/package/slice-ansi/v/4.0.0 | MIT
|
package/lib/index.js
CHANGED
|
@@ -6853,9 +6853,9 @@ var require_string_width = __commonJS({
|
|
|
6853
6853
|
}
|
|
6854
6854
|
});
|
|
6855
6855
|
|
|
6856
|
-
// ../../../node_modules/wrap-ansi/index.js
|
|
6856
|
+
// ../../../node_modules/yargs/node_modules/wrap-ansi/index.js
|
|
6857
6857
|
var require_wrap_ansi = __commonJS({
|
|
6858
|
-
"../../../node_modules/wrap-ansi/index.js"(exports2, module2) {
|
|
6858
|
+
"../../../node_modules/yargs/node_modules/wrap-ansi/index.js"(exports2, module2) {
|
|
6859
6859
|
"use strict";
|
|
6860
6860
|
var stringWidth = require_string_width();
|
|
6861
6861
|
var stripAnsi = require_strip_ansi();
|
|
@@ -64,5 +64,6 @@
|
|
|
64
64
|
"@aws-cdk/aws-route53-targets:userPoolDomainNameMethodWithoutCustomResource": true,
|
|
65
65
|
"@aws-cdk/aws-elasticloadbalancingV2:albDualstackWithoutPublicIpv4SecurityGroupRulesDefault": true,
|
|
66
66
|
"@aws-cdk/aws-iam:oidcRejectUnauthorizedConnections": true,
|
|
67
|
-
"@aws-cdk/core:enableAdditionalMetadataCollection": true
|
|
67
|
+
"@aws-cdk/core:enableAdditionalMetadataCollection": true,
|
|
68
|
+
"@aws-cdk/aws-lambda:createNewPoliciesWithAddToRolePolicy": true
|
|
68
69
|
}
|
|
@@ -280,4 +280,5 @@ export declare function currentlyRecommendedAwsCdkLibFlags(): {
|
|
|
280
280
|
"@aws-cdk/aws-elasticloadbalancingV2:albDualstackWithoutPublicIpv4SecurityGroupRulesDefault": boolean;
|
|
281
281
|
"@aws-cdk/aws-iam:oidcRejectUnauthorizedConnections": boolean;
|
|
282
282
|
"@aws-cdk/core:enableAdditionalMetadataCollection": boolean;
|
|
283
|
+
"@aws-cdk/aws-lambda:createNewPoliciesWithAddToRolePolicy": boolean;
|
|
283
284
|
};
|