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

https://github.com/seebigs/bundl-optimizejs


https://github.com/seebigs/bundl-optimizejs

Last synced: about 17 hours ago
JSON representation

Awesome Lists containing this project

README

          

# bundl-optimizejs

*Use [OptimizeJS](https://github.com/nolanlawson/optimize-js) on your bundles for faster runtime execution*

*Runs with the amazing [Bundl](https://github.com/seebigs/bundl) build tool*

## Install

```
$ npm install --save-dev bundl-optimizejs
```

## Use

```js
var Bundl = require('bundl');
var optimize = require('bundl-optimizejs');

new Bundl(targets)
.then(optimize())
.then(write())
.go();
```