@stacksjs/buddy 0.58.69 → 0.58.71

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,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/buddy",
3
3
  "type": "module",
4
- "version": "0.58.69",
4
+ "version": "0.58.71",
5
5
  "description": "Meet Buddy. The Stacks runtime.",
6
6
  "author": "Chris Breuer",
7
7
  "license": "MIT",
@@ -102,6 +102,7 @@ export function cloud(buddy: CLI) {
102
102
  .alias('cloud:rm')
103
103
  .alias('undeploy')
104
104
  .option('--jump-box', 'Remove the jump-box', { default: false })
105
+ // .option('--realtime-cdn-logs', 'Remove the CDN Realtime Log Stream', { default: false }) // TODO: implement this
105
106
  .option('-p, --project', descriptions.project, { default: false })
106
107
  .option('--verbose', descriptions.verbose, { default: false })
107
108
  .action(async (options: CloudCliOptions) => {
@@ -185,7 +186,8 @@ export function cloud(buddy: CLI) {
185
186
 
186
187
  buddy
187
188
  .command('cloud:optimize-cost', descriptions.optimizeCost)
188
- .option('--jump-box', 'Remove the jump-box', { default: true })
189
+ .option('--jump-box', 'Remove the jump-box', { default: true }) // removes the ec2 instance
190
+ // .option('--realtime-cdn-logs', 'Remove the CDN Realtime Log Stream', { default: true }) // TODO: implement this - removes the Kinesis Data Stream
189
191
  .option('-p, --project', descriptions.project, { default: false })
190
192
  .option('--verbose', descriptions.verbose, { default: false })
191
193
  .action(async (options: CloudCliOptions) => {