Skip to content

Instantly share code, notes, and snippets.

@esperia
esperia / gulpfile.js
Created January 3, 2017 07:13
Auto-generate pdf for Lilypond.
var gulp = require('gulp');
var path = require('path');
var shell = require('gulp-shell')
gulp.task('default', ['watch']);
gulp.task('watch', function(){
gulp.watch('./**/*.ly', ['build']);
});