gulp-hyperx
v1.0.4
Published
gulp plugin for hyperx
Downloads
1
Readme
gulp-hyperx
gulpe plugin version of hyperxify.
Usage
const gulp = require('gulp');
const hyperx = require('gulp-hyperx');
gulp.task('hyperx', function () {
return gulp.src(['index.js'])
.pipe(hyperx())
.pipe(gulp.dest('build'));
});
gulp.task('default', ['hyperx']);