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.
$ npm install -g renamer renamer-case
$ 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
© 2018 Lloyd Brookes [email protected].