This repository has been archived on 2025-01-28. You can view files and clone it, but cannot push or open issues or pull requests.

20 lines
418 B
JavaScript
Raw Normal View History

let gulp = require('gulp');
let run = require('gulp-run-command').default;
gulp.task('clean', run('rm -rf ../../../../.build'));
gulp.task('build', ['clean'], run('make -C ../../../../ ergodox_ez:hacker_dvorak', {
ignoreErrors: true
}));
gulp.task('watch', ['build'], () => {
gulp.watch([
'keymap.c',
'config.h',
'rules.mk',
], ['build']);
});
gulp.task('default', ['watch']);