aws-cdk 2.1031.1 → 2.1032.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/README.md +1 -1
- package/build-info.json +2 -2
- package/lib/cli/cdk-toolkit.js +3 -3
- package/lib/cli/cli-config.js +2 -1
- package/lib/cli/cli-type-registry.json +6 -0
- package/lib/cli/cli.js +2 -1
- package/lib/cli/convert-to-user-input.js +3 -1
- package/lib/cli/io-host/cli-io-host.d.ts +10 -0
- package/lib/cli/io-host/cli-io-host.js +28 -8
- package/lib/cli/parse-command-line-arguments.js +7 -1
- package/lib/cli/user-input.d.ts +6 -0
- package/lib/cli/user-input.js +1 -1
- package/lib/index.js +70 -25
- package/lib/init-templates/app/python/requirements-dev.txt +1 -1
- package/lib/init-templates/app/typescript/package.json +1 -1
- package/lib/init-templates/lib/typescript/package.json +1 -1
- package/lib/init-templates/sample-app/python/requirements-dev.txt +1 -1
- package/lib/init-templates/sample-app/typescript/package.json +1 -1
- package/lib/legacy-exports.js +21 -1
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -1136,7 +1136,7 @@ command to consider only a subset of them, you can specify the stacks you
|
|
|
1136
1136
|
want, both local and deployed:
|
|
1137
1137
|
|
|
1138
1138
|
```shell
|
|
1139
|
-
$ cdk refactor
|
|
1139
|
+
$ cdk refactor Test* ProdStack --unstable=refactor --dry-run
|
|
1140
1140
|
```
|
|
1141
1141
|
|
|
1142
1142
|
This is useful if, for example, you have more than one CDK application deployed
|
package/build-info.json
CHANGED