bundl-rename

2.0.0 • Public • Published

bundl-rename

Rename bundles

Runs with the amazing Bundl build tool

Install

$ npm install --save-dev bundl-rename

Use

var Bundl = require('bundl');
var minify = require('bundl-minify');
var rename = require('bundl-rename');
var write = require('bundl-write');
 
new Bundl(targets)
    .then(write())
    .then(minify())
    .then(rename(options))
    .then(write())
    .go();

Options

Replace file extension only

rename('.new.ext')
rename({
    ext: '.new.ext'
})
 
// original1.js --> original1.new.ext
// original2.js --> original2.new.ext
// original3.js --> original3.new.ext

Prefix or Suffix

rename({
    prefix: '__',
    suffix: '.new'
})
 
// original1.js --> __original1.js.new
// original2.js --> __original2.js.new
// original3.js --> __original3.js.new

Remap specific file names

(files not included in the map will not be renamed)

rename({
    remap: {
        'original1.js': 'one.new',
        'original2.js': 'two.new'
    }
})
 
// original1.js --> one.new
// original2.js --> two.new
// original3.js --> original3.js

Readme

Keywords

none

Package Sidebar

Install

npm i bundl-rename

Weekly Downloads

1

Version

2.0.0

License

MIT

Unpacked Size

4.52 kB

Total Files

6

Last publish

Collaborators

  • seebigs