Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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'
});
```