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: 5 months 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 (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-11-30T16:45:49.000Z (over 10 years ago)
- Last Synced: 2025-02-10T19:25:33.434Z (5 months 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'
});
```