0.0.2 • Published 2 years ago

@evgenii-code/cvcm v0.0.2

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

cvcm - Create Vue + Css Module files

cvcm could be used to create component instances on the file system:

  • Vue single file components
  • SCSS module

SYNOPSIS

cvcm create [-e extension] ( componentName )

The command line options are as follows:

CommandDescription
-e extensioncreate tech extension instead of the default tech list. Could be used several times.
componentNamedefines component to create. componentName is mandatory part of naming.

Examples

Creation of component with the default techs
cvcm create myComponent

Creates directory ./myComponent, and myComponent.vue, myComponent.module.scss. Creates .vue and .scss by default.

Creation of component with one explicit techs
cvcm create -e vue myComponent

Creates directory ./myComponent with technology css instead of default techs.

Creation of component with several defined techs
cvcm create -e vue -e css myComponent

Creates directory ./myComponent with technology vue and css instead of default techs.