gulp-hasp-css
v1.0.0-b
Published
hasp CSS precompiler (gulp plugin)
Downloads
5
Readme
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 test
original hasp repo link
for Grunt task see grunt-hasp-css