https://github.com/whtiehack/gulp-luaminify
Minifies lua content with luamin
https://github.com/whtiehack/gulp-luaminify
Last synced: 3 months ago
JSON representation
Minifies lua content with luamin
- Host: GitHub
- URL: https://github.com/whtiehack/gulp-luaminify
- Owner: whtiehack
- License: mit
- Created: 2016-04-05T15:11:35.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2016-04-05T15:12:40.000Z (about 9 years ago)
- Last Synced: 2025-03-16T18:11:48.483Z (3 months ago)
- Language: JavaScript
- Size: 1000 Bytes
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# gulp-luaminify
Minifies lua content with luamin. [luamin](https://github.com/mathiasbynens/luamin).
## Installation
```bash
npm install gulp-luaminify --save-dev
```## Usage
```javascript
var luaminify = require('gulp-luaminify');gulp.task('minify', function () {
return gulp.src(['path/to/files/*.lua'])
.pipe(luaminify())
.pipe(gulp.dest('dist'));
});
```## LICENSE
(MIT License)