genbox 1.0.60 → 1.0.61
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/dist/commands/destroy.js +1 -1
- package/dist/commands/list.js +1 -0
- package/dist/commands/scan.js +1162 -0
- package/dist/index.js +0 -0
- package/dist/migration.js +335 -0
- package/dist/schema-v3.js +48 -0
- package/package.json +12 -13
package/dist/commands/destroy.js
CHANGED
|
@@ -290,7 +290,7 @@ async function createPRForChanges(genbox) {
|
|
|
290
290
|
}
|
|
291
291
|
}
|
|
292
292
|
exports.destroyCommand = new commander_1.Command('destroy')
|
|
293
|
-
.
|
|
293
|
+
.aliases(['delete', 'remove', 'rm'])
|
|
294
294
|
.description('Destroy one or more Genboxes')
|
|
295
295
|
.argument('[name]', 'Name of the Genbox to destroy (optional - will prompt if not provided)')
|
|
296
296
|
.option('-y, --yes', 'Skip confirmation')
|
package/dist/commands/list.js
CHANGED
|
@@ -9,6 +9,7 @@ const chalk_1 = __importDefault(require("chalk"));
|
|
|
9
9
|
const api_1 = require("../api");
|
|
10
10
|
const genbox_selector_1 = require("../genbox-selector");
|
|
11
11
|
exports.listCommand = new commander_1.Command('list')
|
|
12
|
+
.alias('ls')
|
|
12
13
|
.description('List genboxes (scoped to current project by default)')
|
|
13
14
|
.option('-a, --all', 'Show all genboxes across all projects')
|
|
14
15
|
.option('--terminated', 'Include terminated genboxes')
|