Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aflatter/broccoli-change-extension
A broccoli plugin that changes the extension of each entry in an input tree.
https://github.com/aflatter/broccoli-change-extension
Last synced: 11 days ago
JSON representation
A broccoli plugin that changes the extension of each entry in an input tree.
- Host: GitHub
- URL: https://github.com/aflatter/broccoli-change-extension
- Owner: aflatter
- Created: 2014-11-30T16:39:18.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2014-11-30T16:45:49.000Z (about 10 years ago)
- Last Synced: 2024-12-14T09:46:08.847Z (about 1 month ago)
- Language: JavaScript
- Size: 97.7 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
A plugin for [Broccoli](https://github.com/broccolijs/broccoli) that changes
the extension of each file in a given tree.## Installation
```bash
npm install --save-dev broccoli-change-extension
```## Usage
```js
var changeExtension = require('broccoli-change-extension');changeExtension(tree, {
inputExtension: '.handlebars', outputExtension: '.html'
});
```