aws-cdk 2.1108.0 → 2.1110.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 +2 -2
- package/THIRD_PARTY_LICENSES +138 -964
- package/build-info.json +2 -2
- package/db.json.gz +0 -0
- package/lib/cli/cdk-toolkit.d.ts +8 -0
- package/lib/cli/cdk-toolkit.js +2 -2
- package/lib/cli/cli-config.js +3 -2
- package/lib/cli/cli-type-registry.json +11 -1
- package/lib/cli/cli.js +16 -11
- package/lib/cli/convert-to-user-input.js +5 -1
- package/lib/cli/parse-command-line-arguments.js +12 -2
- package/lib/cli/user-configuration.js +2 -1
- package/lib/cli/user-input.d.ts +12 -2
- package/lib/cli/user-input.js +1 -1
- package/lib/cli/util/trap-errors.d.ts +6 -0
- package/lib/cli/util/trap-errors.js +17 -0
- package/lib/commands/flags/operations.js +2 -2
- package/lib/index.js +43917 -48775
- package/lib/index_bg.wasm +0 -0
- package/lib/init-templates/.init-version.json +1 -1
- package/lib/legacy/configuration.js +2 -1
- package/package.json +17 -17
package/README.md
CHANGED
|
@@ -705,8 +705,8 @@ hotswap your stacks while respecting inter-stack dependencies.
|
|
|
705
705
|
$ cdk watch --concurrency 5
|
|
706
706
|
```
|
|
707
707
|
|
|
708
|
-
**Note**:
|
|
709
|
-
|
|
708
|
+
**Note**: The same limitations apply to to `watch` deployments as do to `--hotswap` deployments.
|
|
709
|
+
It is not recommended to use `watch` for production deployments. See the
|
|
710
710
|
*Hotswap deployments for faster development* section for more information.
|
|
711
711
|
|
|
712
712
|
### `cdk import`
|