Update script paths and adjust destroy order in package scripts

This commit is contained in:
geoffsee
2025-08-16 10:57:18 -04:00
parent 3a28fcc20d
commit 9bdb07fb07
3 changed files with 5 additions and 3 deletions

View File

@@ -5,8 +5,9 @@
"deploy/dev/components" "deploy/dev/components"
], ],
"scripts": { "scripts": {
"dev": "packages/scripts/run.sh",
"setup": "packages/scripts/setup.sh", "setup": "packages/scripts/setup.sh",
"clean": "packages/scripts/cleanup.sh", "clean": "packages/scripts/cleanup.sh",
"dev": "packages/scripts/dev.sh" "destroy": "packages/scripts/destroy.sh"
} }
} }

View File

@@ -9,6 +9,7 @@ if [[ ! "$response" =~ ^[Yy]$ ]]; then
exit 0 exit 0
fi fi
(cd deploy/dev/cluster && bun run destroy) # Reverse Order
(cd deploy/dev/configurations && bun run destroy)
(cd deploy/dev/components && bun run destroy) (cd deploy/dev/components && bun run destroy)
(cd deploy/dev/configurations && bun run destroy) (cd deploy/dev/cluster && bun run destroy)