plumber-rename

0.4.0 • Public • Published

plumber-rename Build Status

Rename operation for Plumber pipelines.

Example

var rename = require('plumber-rename');

module.exports = function(pipelines) {

    pipelines['compile'] = [
        glob('main.js'),
        rename('app'), // => now as `app.js'
        // ... more pipeline operations
    ];

};

API

rename(newName)

Rename the input resource to the given newName.

If more than one resource is passed to rename, the operation will fail with an error.

Note: the newName should not include the file extension. The extension is managed and added automatically.

Package Sidebar

Install

npm i plumber-rename

Weekly Downloads

4

Version

0.4.0

License

GPL

Last publish

Collaborators

  • theefer