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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "deploy-stack",
3
- "version": "0.14.2",
3
+ "version": "0.14.3",
4
4
  "description": "Provision production-ready AWS infrastructure and CI/CD pipelines in seconds.",
5
5
  "engines": {
6
6
  "node": ">=18.0.0"
@@ -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
- const deleteS3Bucket = await confirm({
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.