repoburg 1.0.47 → 1.0.48
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/platform-cli.js +4 -0
package/package.json
CHANGED
package/platform-cli.js
CHANGED
|
@@ -78,6 +78,7 @@ program
|
|
|
78
78
|
|
|
79
79
|
program
|
|
80
80
|
.command('start [projectPath]')
|
|
81
|
+
.alias('s')
|
|
81
82
|
.description('Start a new repoburg-backend instance for a project.')
|
|
82
83
|
.action(async (projectPath) => {
|
|
83
84
|
const { default: chalk } = await import('chalk');
|
|
@@ -196,6 +197,7 @@ program
|
|
|
196
197
|
|
|
197
198
|
program
|
|
198
199
|
.command('stop <name>')
|
|
200
|
+
.alias('st')
|
|
199
201
|
.description('Stop a running repoburg-backend instance.')
|
|
200
202
|
.action(async (name) => {
|
|
201
203
|
const { default: chalk } = await import('chalk');
|
|
@@ -209,6 +211,7 @@ program
|
|
|
209
211
|
|
|
210
212
|
program
|
|
211
213
|
.command('restart <name>')
|
|
214
|
+
.alias('rs')
|
|
212
215
|
.description('Restart a repoburg-backend instance.')
|
|
213
216
|
.action(async (name) => {
|
|
214
217
|
const { default: chalk } = await import('chalk');
|
|
@@ -236,6 +239,7 @@ program
|
|
|
236
239
|
|
|
237
240
|
program
|
|
238
241
|
.command('remove-all')
|
|
242
|
+
.alias('rma')
|
|
239
243
|
.description('Stop and remove all services from management.')
|
|
240
244
|
.action(async () => {
|
|
241
245
|
const { default: chalk } = await import('chalk');
|