@mikarinneoracle/oci-cdk-code-only-preview 0.0.11 → 0.0.12
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/package.json +1 -1
package/README.md
CHANGED
|
@@ -146,9 +146,9 @@ npx ocdk destroy --code-only --auto-approve
|
|
|
146
146
|
Run from your project root (where your `func.yaml` / function code and `node_modules/@mikarinneoracle/oci-cdk-code-only-preview` live):
|
|
147
147
|
|
|
148
148
|
```bash
|
|
149
|
-
npx ocdk deploy
|
|
149
|
+
npx ocdk deploy --auto-approve --code-only
|
|
150
150
|
npx ocdk tail:execution-log
|
|
151
|
-
npx ocdk destroy
|
|
151
|
+
npx ocdk destroy --auto-approve --code-only
|
|
152
152
|
```
|
|
153
153
|
|
|
154
154
|
- **`npx ocdk deploy`** – Deploy the stack. Options (e.g. `--auto-approve`) are passed through.
|