awscfn 1.7.0 → 1.7.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.
Files changed (3) hide show
  1. package/README.md +1 -1
  2. package/bin/awscfn +1 -1
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -152,7 +152,7 @@ awscfn update-stack -n <STACK_NAME> -t <TEMPLATE_FILE> -p <PARAMS_FILE>
152
152
  | `--params`, `-p` | Parameters file (YAML) |
153
153
  | `--set`, `-s` | Override one or more parameters (repeatable `Key=Value`). You can omit `--params` to override only specific values on an existing stack. |
154
154
  | `--create` | If the stack doesn't exist, create it (instead of erroring) |
155
- | `-m` | Shorthand for `--create` |
155
+ | `-c` | Shorthand for `--create` |
156
156
 
157
157
  If there are no changes to apply, the command succeeds gracefully:
158
158
  ```
package/bin/awscfn CHANGED
@@ -326,7 +326,7 @@ const setOpt = {
326
326
  const createIfMissingOpt = {
327
327
  create: {
328
328
  type: 'boolean',
329
- alias: 'm',
329
+ alias: 'c',
330
330
  describe: 'Create the stack if it does not exist (update-stack only)',
331
331
  demandOption: false,
332
332
  default: false,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "awscfn",
3
- "version": "1.7.0",
3
+ "version": "1.7.1",
4
4
  "description": "CLI and TypeScript SDK for managing AWS CloudFormation stacks with simple YAML parameters and real-time event streaming.",
5
5
  "type": "commonjs",
6
6
  "main": "./dist/index.js",