0.0.1 • Published 4 years ago

myfirstcliproject v0.0.1

Weekly downloads
6
License
n
Repository
github
Last release
4 years ago

myFirstCliProject

oclif Version CircleCI Downloads/week License

Usage

$ npm install -g myfirstcliproject
$ myfirstcliproject COMMAND
running command...
$ myfirstcliproject (-v|--version|version)
myfirstcliproject/0.0.0 darwin-x64 node-v10.16.3
$ myfirstcliproject --help [COMMAND]
USAGE
  $ myfirstcliproject COMMAND
...

Commands

myfirstcliproject add

adds a new todo

USAGE
  $ myfirstcliproject add

OPTIONS
  -n, --task=task  task

DESCRIPTION
  ...
  Adds a new todo to the list

See code: src/commands/add.js

myfirstcliproject hello

Describe the command here

USAGE
  $ myfirstcliproject hello

OPTIONS
  -n, --name=name  name to print

DESCRIPTION
  ...
  Extra documentation goes here

See code: src/commands/hello.js

myfirstcliproject help [COMMAND]

display help for myfirstcliproject

USAGE
  $ myfirstcliproject help [COMMAND]

ARGUMENTS
  COMMAND  command to show help for

OPTIONS
  --all  see all commands in CLI

See code: @oclif/plugin-help

myfirstcliproject remove

Remove tasks by id

USAGE
  $ myfirstcliproject remove

OPTIONS
  -n, --id=id  task id

DESCRIPTION
  ...
  Remove tasks by id

See code: src/commands/remove.js

myfirstcliproject show

Shows Tasks

USAGE
  $ myfirstcliproject show

DESCRIPTION
  ...
  Shows all the tasks

See code: src/commands/show.js

myfirstcliproject update

Mark task as done

USAGE
  $ myfirstcliproject update

OPTIONS
  -n, --id=id  task id

DESCRIPTION
  ...
  Mark task as done

See code: src/commands/update.js