renamer-case-upper-first
v1.0.0
Published
Renamer plugin to set the camelCase and firstUpper of a filename
Readme
renamer-case-upper-first
Renamer plugin to set the case of a filename.
Possible values: camel, kebab, lower, upper, snake and start. It uses the lodash methods by the same name.
Install
$ npm install -g renamer renamer-caseUse
$ tree -N
.
├── One one
└── One two
0 directories, 2 files
$ renamer -p case --case camel *
✔︎ One one → OneOne
✔︎ One two → OneTwo
$ tree -N
.
├── OneOne
└── OneTwo
0 directories, 2 files