Answer the question
In order to leave comments, you need to log in
How to set up automatic HAML to HTML conversion in Windows when changing *.haml file?
There are wonderful programs Koala App and PrePros. Essentially what is needed. But they don't know how to convert HAML.
Is there something similar for HAML? Watcher needed.
Answer the question
In order to leave comments, you need to log in
PrePros can work with haml
or you can use gulp
var gulp = require('gulp');
var haml = require('gulp-haml');
gulp.task('haml', function () {
gulp.src('./haml/blue/*.haml')
.pipe(haml())
.pipe(gulp.dest('./haml/blue'));
});
gulp.task('watch-haml', function() {
gulp.watch(('./haml/blue/*.haml', ['haml']);
});
gulp watch-haml
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question