metalsmith-move-remove
Version:
A Metalsmith.io plugin that moves and removes files in the directory strucuture
35 lines (25 loc) • 770 B
Markdown
[](http://www.metalsmith.io/) plugin that move and/or removes files from the file structure.
```
$ npm install metalsmith-move-remove
```
* `move`: Array of objects with instructions for what to move and where
* `remove`: Array of file regexp patterns to remove
```node
var Metalsmith = require('metalsmith');
var moveRemove = require('metalsmith-move-remove');
var metalsmith = new Metalsmith(__dirname)
.use(moveRemove({
move: [
{ source: 'misplaced-file/index.html', target: 'correctly-placed-file.html' }]
],
remove: ['file-i-dont-want.html', 'another-file-i-dont-want']
}))
```
[](/LICENSE)
[](/CHANGELOG.md)