1.0.0-b • Published 9 years ago

gulp-hasp-css v1.0.0-b

Weekly downloads
2
License
MIT
Repository
github
Last release
9 years ago

gulpjs 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