@aws/nx-plugin-mcp 1.0.0-rc.29 → 1.0.0-rc.30

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.
@@ -382,11 +382,11 @@ Then run the deploy target:
382
382
  <NxCommands commands={['deploy <my-infra> <my-infra>-sandbox/*']} />
383
383
 
384
384
  :::tip[Express Mode for Faster Deployments]
385
- The `deploy` target uses [CloudFormation express mode](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cloudformation-express-mode.html) by default (via CDK's `--express` flag) to speed up deployments during development. Express mode finishes once resource configuration is confirmed applied rather than waiting for full stabilization, with propagation continuing in the background, for significantly faster iteration cycles.
385
+ The `deploy` target waits for full resource stabilization by default, favouring consistency over speed. To speed up iteration during development, opt into [CloudFormation express mode](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cloudformation-express-mode.html) by passing CDK's `--express` flag:
386
386
 
387
- Express mode is intended for development and iteration. To deploy without it and wait for full resource stabilization, remove the `--express` flag from the `deploy` target's command in your infrastructure project's `project.json`.
387
+ <NxCommands commands={['deploy <my-infra> <my-infra>-sandbox/* --express']} />
388
388
 
389
- For real deployments to production stages, use the `deploy-ci` target (see [below](#deploying-to-aws-in-a-cicd-pipeline)) as part of a CI/CD pipeline. This target does not use express mode, so it always waits for full stabilization.
389
+ Express mode finishes once resource configuration is confirmed applied rather than waiting for full stabilization, with propagation continuing in the background, for significantly faster iteration cycles. It is intended for development and iteration.
390
390
  :::
391
391
 
392
392
  :::tip[Selective Stack Deployment]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws/nx-plugin-mcp",
3
- "version": "1.0.0-rc.29",
3
+ "version": "1.0.0-rc.30",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/awslabs/nx-plugin-for-aws.git",