Skip to content
This repository was archived by the owner on Dec 15, 2025. It is now read-only.

Commit e42450a

Browse files
author
Fuss Florian (uid10804)
committed
docs(cli): add missing descriptions for commands
1 parent 7b8a6ea commit e42450a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

packages/cli/src/commands/create-stack.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { AWSActions } from '../actions/aws-actions';
1010
import { ServerlessConfig } from '../classes/serverlessconfig';
1111
import chalk from 'chalk';
1212
export class CreateStackCommand extends Command {
13-
static description = 'describe the command here';
13+
static description = 'create the stackfolder and deploy the stack in the cloud';
1414

1515
static flags = {
1616
help: flags.help({ char: 'h' }),

packages/cli/src/commands/run.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { Helpers } from '../actions/helpers';
55
import cli from 'cli-ux';
66
import chalk from 'chalk';
77
export class Run extends Command {
8-
static description = 'describe the command here';
8+
static description = 'run and test the api locally';
99

1010
static flags = {
1111
help: flags.help({ char: 'h' }),

packages/cli/src/commands/update-stack.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import cli from 'cli-ux';
99
import { AppConfig } from 'json-serverless-lib';
1010

1111
export class UpdateStackCommand extends Command {
12-
static description = 'describe the command here';
12+
static description = 'update the stackfolder and update the stack in the cloud';
1313

1414
static flags = {
1515
help: flags.help({ char: 'h' }),

0 commit comments

Comments
 (0)