summaryrefslogtreecommitdiffstats
path: root/keyboards/ergodox_ez/keymaps/hacker_dvorak/gulpfile.js
diff options
context:
space:
mode:
authorIsmael Venegas Castelló <ismael.vc1337@gmail.com>2018-12-05 17:12:35 +0100
committerDrashna Jaelre <drashna@live.com>2018-12-05 17:12:35 +0100
commit538874f90f5ae69b241f80baa639fb6dbc4cfa80 (patch)
treec0e055534d0702cee30922d8f675987130279f78 /keyboards/ergodox_ez/keymaps/hacker_dvorak/gulpfile.js
parent8a330b33ff41ffc1ec3f8fa39722e93115ea3f0f (diff)
downloadqmk_firmware-538874f90f5ae69b241f80baa639fb6dbc4cfa80.tar.gz
qmk_firmware-538874f90f5ae69b241f80baa639fb6dbc4cfa80.tar.xz
Keymap: Hacker Dvorak (#4514)
* Hacker Dvorak Programmer Dvorak based layout for the Ergodox EZ. * Address drashna comments. * Fix RGB and drop OSL for MO. * Add gulp file to automate development. * Fix gulpfile. * Caps, num and scroll lock indicators. * Fix scroll lock.
Diffstat (limited to 'keyboards/ergodox_ez/keymaps/hacker_dvorak/gulpfile.js')
-rw-r--r--keyboards/ergodox_ez/keymaps/hacker_dvorak/gulpfile.js13
1 files changed, 13 insertions, 0 deletions
diff --git a/keyboards/ergodox_ez/keymaps/hacker_dvorak/gulpfile.js b/keyboards/ergodox_ez/keymaps/hacker_dvorak/gulpfile.js
new file mode 100644
index 000000000..338b0c6ba
--- /dev/null
+++ b/keyboards/ergodox_ez/keymaps/hacker_dvorak/gulpfile.js
@@ -0,0 +1,13 @@
+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']);
+});