1.0.0 • Published 3 years ago

fern-cli v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

fern-cli

A CLI built to help scaffold new & in-progress app development, made by Irfan Ismail.

oclif Version Downloads/week License

Usage

$ npm install -g fern-cli
$ fern COMMAND
running command...
$ fern (-v|--version|version)
fern-cli/1.0.0 linux-x64 node-v14.17.0
$ fern --help [COMMAND]
USAGE
  $ fern COMMAND
...

Commands

fern commands

list all the commands

USAGE
  $ fern commands

OPTIONS
  -h, --help              show CLI help
  -j, --json              display unfiltered api data in json format
  -x, --extended          show extra columns
  --columns=columns       only show provided columns (comma-separated)
  --csv                   output is csv format [alias: --output=csv]
  --filter=filter         filter property by partial string matching, ex: name=foo
  --hidden                show hidden commands
  --no-header             hide table header from output
  --no-truncate           do not truncate output to fit screen
  --output=csv|json|yaml  output in a more machine friendly format
  --sort=sort             property to sort by (prepend '-' for descending)

See code: @oclif/plugin-commands

fern create FILE

Creates a file (React, Vue & Sass) with proper boilerplate.

USAGE
  $ fern create FILE

ARGUMENTS
  FILE  Creates an empty file with boilerplate

OPTIONS
  -f, --type=type  File types: next, nuxt

DESCRIPTION
  A quick way for you to create new files with templates for React, Vue, Next, Nuxt & Sass projects!

  Created by irfanismail.

See code: src/commands/create.js

fern hello

Describe the command here

USAGE
  $ fern hello

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

DESCRIPTION
  ...
  Extra documentation goes here

See code: src/commands/hello.js

fern help [COMMAND]

display help for fern

USAGE
  $ fern help [COMMAND]

ARGUMENTS
  COMMAND  command to show help for

OPTIONS
  --all  see all commands in CLI

See code: @oclif/plugin-help

fern scaffold TEMPLATE

Modular boilerplates (sass, bee-queue) for new/existing projects

USAGE
  $ fern scaffold TEMPLATE

ARGUMENTS
  TEMPLATE  (css|sass) Creates a directory & copies the boilerplate template within

OPTIONS
  -d, --dirname=dirname  Replaces directory name of scaffolded folder. Default [TEMPLATE]

DESCRIPTION
  A modular way to setup your boilerplate codes, based on your project needs. Great tool to have for existing & new 
  projects!

  Created by irfanismail.

See code: src/commands/scaffold.js

fern strapi [INIT] [DUMP]

Modular boilerplates (sass, bee-queue) for new/existing projects

USAGE
  $ fern strapi [INIT] [DUMP]

ARGUMENTS
  INIT  Initializes a 'migration' inside the Strapi project
  DUMP  Creates a 'migration' file containing all database configurations

OPTIONS
  -d, --dirname=dirname  Replaces directory name of scaffolded folder. Default [TEMPLATE]

DESCRIPTION
  A modular way to setup your boilerplate codes, based on your project needs. Great tool to have for existing & new 
  projects!

  Created by irfanismail.

See code: src/commands/strapi.js