https://github.com/vfk/gulp-jscrush
Minify files with JSCrush
https://github.com/vfk/gulp-jscrush
gulp-plugin javascript jscrush minifying-files nodejs
Last synced: 2 months ago
JSON representation
Minify files with JSCrush
- Host: GitHub
- URL: https://github.com/vfk/gulp-jscrush
- Owner: VFK
- License: mit
- Created: 2014-03-17T15:26:22.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2014-03-20T16:33:25.000Z (about 11 years ago)
- Last Synced: 2025-03-22T16:52:49.748Z (3 months ago)
- Topics: gulp-plugin, javascript, jscrush, minifying-files, nodejs
- Language: JavaScript
- Size: 125 KB
- Stars: 5
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# gulp-jscrush [![NPM version][npm-image]][npm-url] [![Build status][travis-image]][travis-url]
>Minify javascript files with [JSCrush](http://www.iteral.com/jscrush/)
## Usage
#### Install
```shell
npm install --save-dev gulp-jscrush
```#### Use
```javascript
var gulp = require('gulp');
var jscrush = require('gulp-jscrush');gulp.task('default', function(){
gulp.src('./test.js')
.pipe(jscrush())
.pipe(gulp.dest('./build'));
})
```
[npm-url]: https://npmjs.org/package/gulp-jscrush
[npm-image]: https://badge.fury.io/js/gulp-jscrush.png
[travis-url]: https://travis-ci.org/VFK/gulp-jscrush
[travis-image]: https://travis-ci.org/VFK/gulp-jscrush.png?branch=master