Skip to content

Determines the files extension to use on a destination file path based on the `extname` of a source file.

License

Notifications You must be signed in to change notification settings

jonschlinkert/rewrite-ext

Repository files navigation

rewrite-ext NPM version NPM monthly downloads NPM total downloads Linux Build Status

Automatically re-write the destination extension of a filepath based on the source extension. e.g .coffee => .js. This will only rename the ext, no other path parts are modified.

Install

Install with npm:

$ npm install --save rewrite-ext

Usage

var rewrite = require('rewrite-ext');

Automatically re-write extensions to the mapped extensions from ext-map:

console.log(rewrite('abc.coffee'));
//=> 'abc.js'
console.log(rewrite('abc.less'));
//=> 'abc.css'

Explicitly pass an extension to use:

console.log(rewrite('foo/bar.txt', '.abc'));
//=> 'foo/bar.abc'

More examples

rewrite('abc.styl');    //=> 'abc.css'
rewrite('abc.sass');    //=> 'abc.css'
rewrite('abc.scss');    //=> 'abc.css'
rewrite('faux.css');    //=> 'faux.css'
rewrite('abc.swig');    //=> 'abc.html'
rewrite('abc.hbs');     //=> 'abc.html'
rewrite('abc.md');      //=> 'abc.html'
rewrite('abc.tmpl');    //=> 'abc.html'
rewrite('faux.html');   //=> 'faux.html'
rewrite('faux.coffee'); //=> 'faux.js'

About

Related projects

Contributing

Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.

Building docs

(This project's readme.md is generated by verb, please don't edit the readme directly. Any changes to the readme must be made in the .verb.md readme template.)

To generate the readme, run the following command:

$ npm install -g verbose/verb#dev verb-generate-readme && verb

Running tests

Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:

$ npm install && npm test

Author

Jon Schlinkert

License

Copyright © 2017, Jon Schlinkert. Released under the MIT License.


This file was generated by verb-generate-readme, v0.4.3, on March 22, 2017.

About

Determines the files extension to use on a destination file path based on the `extname` of a source file.

Resources

License

Stars

Watchers

Forks

Sponsor this project

 

Packages

No packages published