deploy-stack 0.14.2 → 0.14.3
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/package.json +1 -1
- package/src/commands/destroy.js +3 -1
- package/release_notes.md +0 -7
package/package.json
CHANGED
package/src/commands/destroy.js
CHANGED
|
@@ -100,8 +100,10 @@ export async function destroyStack() {
|
|
|
100
100
|
}
|
|
101
101
|
|
|
102
102
|
// 3. Clean up the S3 State Bucket
|
|
103
|
+
let deleteS3Bucket = false;
|
|
104
|
+
|
|
103
105
|
if (bucketName) {
|
|
104
|
-
|
|
106
|
+
deleteS3Bucket = await confirm({
|
|
105
107
|
message: color.yellow(`AWS compute resources destroyed. Do you also want to permanently delete the S3 state bucket?\n (Select 'No' if you plan to run 'deploy-stack apply' later to spin this back up.)`),
|
|
106
108
|
initialValue: false,
|
|
107
109
|
});
|
package/release_notes.md
DELETED
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
# 📝 Architecture Overview & Vercel Example
|
|
2
|
-
|
|
3
|
-
This patch release improves the documentation generated for end-users and adds the Vercel migration reference implementation to our ecosystem.
|
|
4
|
-
|
|
5
|
-
### 📖 What's New
|
|
6
|
-
* **Template Architecture Overview:** The auto-generated `README.md` placed in user repositories now includes a high-level "Architecture Overview". This ensures developers understand the AWS topology (ECS Fargate, ALB, IAM OIDC, S3 State) they just provisioned before diving into deployment commands.
|
|
7
|
-
* **Vercel Example Linked:** Officially linked the `deploy-stack-vercel-nextjs-example` repository in the main project README, providing users a direct reference for migrating edge routing (`vercel.json`) and Next.js standalone configurations to AWS.
|