1.0.0-b • Published 10 years ago
gulp-hasp-css v1.0.0-b
Hasp Gulp plugin
Run Hasp precompiler in your gulp pipeline.
Sample usage
var gulp = require('gulp');
var hasp = require('gulp-hasp-css');
gulp.task('haspify', function () {
gulp.src('src/*.hcss')
.pipe(hasp())
.pipe(gulp.dest('dest/'));
});Examples
Example of how to use it is stored in example/ directory. Example translates .hcss files from input/ to output/, also minifying them on the way (functionality not included in the plugin).
To run the example clone repository and run:
npm testoriginal hasp repo link
for Grunt task see grunt-hasp-css