@aws-cdk/toolkit-lib 0.1.0 → 0.1.2
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/CODE_REGISTRY.md +31 -0
- package/README.md +18 -18
- package/build-info.json +2 -2
- package/lib/api/aws-cdk.js +263 -80
- package/lib/api/aws-cdk.js.map +4 -4
- package/lib/api/cloud-assembly/private/context-aware-source.js +3 -3
- package/lib/api/cloud-assembly/private/prepare-source.js +2 -2
- package/lib/api/cloud-assembly/private/source-builder.d.ts +2 -2
- package/lib/api/cloud-assembly/private/source-builder.js +3 -3
- package/lib/api/io/private/codes.d.ts +55 -29
- package/lib/api/io/private/codes.js +143 -28
- package/lib/api/io/private/messages.d.ts +14 -20
- package/lib/api/io/private/messages.js +19 -15
- package/lib/api/io/private/timer.js +6 -5
- package/lib/toolkit/index.d.ts +1 -0
- package/lib/toolkit/index.js +2 -1
- package/lib/toolkit/toolkit.js +16 -16
- package/lib/toolkit/types.d.ts +67 -0
- package/lib/toolkit/types.js +3 -0
- package/package.json +10 -9
package/package.json
CHANGED
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"@types/split2": "^4.2.3",
|
|
44
44
|
"@typescript-eslint/eslint-plugin": "^8",
|
|
45
45
|
"@typescript-eslint/parser": "^8",
|
|
46
|
-
"aws-cdk": "^2.
|
|
46
|
+
"aws-cdk": "^2.1001.0",
|
|
47
47
|
"aws-cdk-lib": "^2.180.0",
|
|
48
48
|
"aws-sdk-client-mock": "^4.1.0",
|
|
49
49
|
"commit-and-tag-version": "^12",
|
|
@@ -66,11 +66,12 @@
|
|
|
66
66
|
"typescript": "5.6"
|
|
67
67
|
},
|
|
68
68
|
"dependencies": {
|
|
69
|
-
"@aws-cdk/cloud-assembly-schema": "^40.
|
|
69
|
+
"@aws-cdk/cloud-assembly-schema": "^40.5.0",
|
|
70
70
|
"@aws-cdk/cloudformation-diff": "^2.179.0",
|
|
71
71
|
"@aws-cdk/cx-api": "^2.180.0",
|
|
72
72
|
"@aws-cdk/region-info": "^2.180.0",
|
|
73
73
|
"@aws-sdk/client-appsync": "3.741",
|
|
74
|
+
"@aws-sdk/client-cloudcontrol": "3.741",
|
|
74
75
|
"@aws-sdk/client-cloudformation": "3.741",
|
|
75
76
|
"@aws-sdk/client-cloudwatch-logs": "3.741",
|
|
76
77
|
"@aws-sdk/client-codebuild": "3.741",
|
|
@@ -90,17 +91,17 @@
|
|
|
90
91
|
"@aws-sdk/credential-providers": "3.741",
|
|
91
92
|
"@aws-sdk/ec2-metadata-service": "3.741",
|
|
92
93
|
"@aws-sdk/lib-storage": "3.741",
|
|
93
|
-
"@jsii/check-node": "^1.
|
|
94
|
-
"@smithy/middleware-endpoint": "^4.0.
|
|
95
|
-
"@smithy/node-http-handler": "^4.0.
|
|
94
|
+
"@jsii/check-node": "^1.108.0",
|
|
95
|
+
"@smithy/middleware-endpoint": "^4.0.6",
|
|
96
|
+
"@smithy/node-http-handler": "^4.0.3",
|
|
96
97
|
"@smithy/property-provider": "^4.0.1",
|
|
97
98
|
"@smithy/shared-ini-file-loader": "^4.0.1",
|
|
98
99
|
"@smithy/util-retry": "^4.0.1",
|
|
99
|
-
"@smithy/util-stream": "^4.1.
|
|
100
|
+
"@smithy/util-stream": "^4.1.2",
|
|
100
101
|
"@smithy/util-waiter": "^4.0.2",
|
|
101
102
|
"archiver": "^7.0.1",
|
|
102
103
|
"camelcase": "^6",
|
|
103
|
-
"cdk-assets": "^3.0.0-rc.
|
|
104
|
+
"cdk-assets": "^3.0.0-rc.145",
|
|
104
105
|
"cdk-from-cfn": "^0.191.0",
|
|
105
106
|
"chalk": "^4",
|
|
106
107
|
"chokidar": "^3",
|
|
@@ -126,7 +127,7 @@
|
|
|
126
127
|
"cdk"
|
|
127
128
|
],
|
|
128
129
|
"engines": {
|
|
129
|
-
"node": ">=
|
|
130
|
+
"node": ">= 14.15.0"
|
|
130
131
|
},
|
|
131
132
|
"main": "lib/index.js",
|
|
132
133
|
"license": "Apache-2.0",
|
|
@@ -134,7 +135,7 @@
|
|
|
134
135
|
"publishConfig": {
|
|
135
136
|
"access": "public"
|
|
136
137
|
},
|
|
137
|
-
"version": "0.1.
|
|
138
|
+
"version": "0.1.2",
|
|
138
139
|
"types": "lib/index.d.ts",
|
|
139
140
|
"exports": {
|
|
140
141
|
".": {
|