@aws-cdk/integ-runner 2.203.2 → 2.204.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 +227 -21
- package/lib/recommended-feature-flags.json +2 -1
- package/lib/runner/cdk-test-app.d.ts +1 -0
- package/lib/runner/cdk-test-app.d.ts.map +1 -1
- package/lib/workers/extract/index.js +16775 -8210
- package/package.json +15 -13
package/package.json
CHANGED
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
"scripts": {
|
|
11
11
|
"build": "projen build",
|
|
12
12
|
"bump": "projen bump",
|
|
13
|
+
"bump:releasable-commits": "projen bump:releasable-commits",
|
|
13
14
|
"check-for-updates": "projen check-for-updates",
|
|
14
15
|
"check-licenses": "projen check-licenses",
|
|
15
16
|
"compile": "projen compile",
|
|
@@ -33,7 +34,7 @@
|
|
|
33
34
|
},
|
|
34
35
|
"devDependencies": {
|
|
35
36
|
"@aws-cdk/integ-tests-alpha": "2.184.1-alpha.0",
|
|
36
|
-
"@cdklabs/eslint-plugin": "^2.0.
|
|
37
|
+
"@cdklabs/eslint-plugin": "^2.0.16",
|
|
37
38
|
"@stylistic/eslint-plugin": "^3",
|
|
38
39
|
"@types/fs-extra": "^11",
|
|
39
40
|
"@types/jest": "^29.5.14",
|
|
@@ -43,32 +44,33 @@
|
|
|
43
44
|
"@types/yargs": "^17.0.35",
|
|
44
45
|
"@typescript-eslint/eslint-plugin": "^8",
|
|
45
46
|
"@typescript-eslint/parser": "^8",
|
|
46
|
-
"aws-cdk-lib": "2.
|
|
47
|
+
"aws-cdk-lib": "2.262.2",
|
|
47
48
|
"commit-and-tag-version": "^12",
|
|
48
49
|
"constructs": "^10",
|
|
49
50
|
"eslint": "^9",
|
|
50
51
|
"eslint-config-prettier": "^10.1.8",
|
|
51
52
|
"eslint-import-resolver-typescript": "^4.4.5",
|
|
52
53
|
"eslint-plugin-import": "^2.32.0",
|
|
53
|
-
"eslint-plugin-jest": "^29.
|
|
54
|
+
"eslint-plugin-jest": "^29.16.0",
|
|
54
55
|
"eslint-plugin-jsdoc": "^62.9.0",
|
|
55
56
|
"eslint-plugin-prettier": "^4.2.5",
|
|
56
57
|
"jest": "^29.7.0",
|
|
57
58
|
"jest-junit": "^16",
|
|
58
59
|
"license-checker": "^25.0.1",
|
|
59
60
|
"mock-fs": "^5",
|
|
60
|
-
"node-backpack": "^1.1.
|
|
61
|
-
"nx": "^22.7.
|
|
61
|
+
"node-backpack": "^1.1.44",
|
|
62
|
+
"nx": "^22.7.8",
|
|
62
63
|
"prettier": "^2.8",
|
|
63
|
-
"projen": "^0.
|
|
64
|
-
"ts-jest": "^29.4.
|
|
64
|
+
"projen": "^0.101.22",
|
|
65
|
+
"ts-jest": "^29.4.12",
|
|
66
|
+
"ts-node": "^10.9.2",
|
|
65
67
|
"typescript": "5.9",
|
|
66
|
-
"@aws-cdk/aws-service-spec": "^0.1.
|
|
68
|
+
"@aws-cdk/aws-service-spec": "^0.1.199",
|
|
67
69
|
"@aws-cdk/cdk-assets-lib": "1.4.15",
|
|
68
70
|
"@aws-cdk/cloud-assembly-api": "2.3.0",
|
|
69
|
-
"@aws-cdk/cloud-assembly-schema": ">=54.
|
|
71
|
+
"@aws-cdk/cloud-assembly-schema": ">=54.16.0",
|
|
70
72
|
"@aws-cdk/cloudformation-diff": "2.187.2",
|
|
71
|
-
"@aws-cdk/toolkit-lib": "1.
|
|
73
|
+
"@aws-cdk/toolkit-lib": "1.38.0",
|
|
72
74
|
"@aws-sdk/client-cloudformation": "^3",
|
|
73
75
|
"chalk": "^4",
|
|
74
76
|
"chokidar": "^4",
|
|
@@ -78,7 +80,7 @@
|
|
|
78
80
|
"yargs": "^16"
|
|
79
81
|
},
|
|
80
82
|
"dependencies": {
|
|
81
|
-
"@aws-cdk/aws-service-spec": "0.1.
|
|
83
|
+
"@aws-cdk/aws-service-spec": "0.1.199"
|
|
82
84
|
},
|
|
83
85
|
"keywords": [
|
|
84
86
|
"aws",
|
|
@@ -100,8 +102,8 @@
|
|
|
100
102
|
"publishConfig": {
|
|
101
103
|
"access": "public"
|
|
102
104
|
},
|
|
103
|
-
"version": "2.
|
|
104
|
-
"packageManager": "yarn@4.
|
|
105
|
+
"version": "2.204.1",
|
|
106
|
+
"packageManager": "yarn@4.17.1",
|
|
105
107
|
"types": "lib/index.d.ts",
|
|
106
108
|
"//": "~~ Generated by projen. To modify, edit .projenrc.js and run \"yarn projen\"."
|
|
107
109
|
}
|