https://github.com/seebigs/bundl-optimizejs
https://github.com/seebigs/bundl-optimizejs
Last synced: about 17 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/seebigs/bundl-optimizejs
- Owner: seebigs
- Created: 2018-04-25T01:36:40.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-05-24T19:41:46.000Z (about 8 years ago)
- Last Synced: 2025-10-25T05:44:07.517Z (8 months ago)
- Language: JavaScript
- Size: 2.93 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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();
```