re-case

1.0.7 • Public • Published

recase

js-standard-style

Change file case in bulk

Installation

$ npm install re-case

Usage

recase <pattern> --<opts>

e.g.

recase components/*.js --case capital

Transform all the javascript files in components/ to capital case:

components/menu.js -> components/Menu.js
components/dropdown-menu.js -> components/DropdownMenu.js

Internally this uses to-case, so you can specify any of the cases that it accepts and they should work

  • camel - whatTheHeck
  • capital - What The Heck
  • constant - WHAT_THE_HECK
  • dot - what.the.heck
  • inverse - WHAt ThE HeCK
  • lower - what the heck
  • pascal - WhatTheHeck
  • sentence - What the heck.
  • slug - what-the-heck
  • snake - what_the_heck
  • space - what the heck
  • title - What the Heck
  • upper - WHAT THE HECK

Options

  • --case - The case to change to
  • --ext - If you want to use an extension other than that detected by path.extname specify this. E.g. .spec.js or .test.js. Extensions are left untouched.

As a library

Using it as a library is just as simple:

var recase = require('re-case')

recase('components/*.js', 'capital')

License

The MIT License

Copyright © 2016, Weo.io <info@weo.io>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Readme

Keywords

none

Package Sidebar

Install

npm i re-case

Weekly Downloads

0

Version

1.0.7

License

MIT

Last publish

Collaborators

  • ashaffer88