summaryrefslogtreecommitdiff
path: root/keyboards/ergodox_ez/keymaps/hacker_dvorak/gulpfile.js
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/ergodox_ez/keymaps/hacker_dvorak/gulpfile.js')
-rw-r--r--keyboards/ergodox_ez/keymaps/hacker_dvorak/gulpfile.js22
1 files changed, 0 insertions, 22 deletions
diff --git a/keyboards/ergodox_ez/keymaps/hacker_dvorak/gulpfile.js b/keyboards/ergodox_ez/keymaps/hacker_dvorak/gulpfile.js
deleted file mode 100644
index 81a4e93fda..0000000000
--- a/keyboards/ergodox_ez/keymaps/hacker_dvorak/gulpfile.js
+++ /dev/null
@@ -1,22 +0,0 @@
-const gulp = require('gulp');
-const run = require('gulp-run-command').default;
-
-
-const ROOT_DIR = '../../../../';
-const BUILD_DIR = `${ROOT_DIR}.build`;
-const HACKER_DVORAK_DIR = './**/*';
-
-const CLEAN_CMD = `rm -rf ${BUILD_DIR}`;
-const BUILD_CMD = `make -C ${ROOT_DIR} ergodox_ez:hacker_dvorak`;
-
-gulp.task('clean', run(CLEAN_CMD));
-
-gulp.task('build', gulp.series('clean', run(BUILD_CMD, {
- ignoreErrors: true
-})));
-
-gulp.task('watch', gulp.series('build', () => {
- gulp.watch(HACKER_DVORAK_DIR, gulp.series('build'));
-}));
-
-gulp.task('default', gulp.series('watch'));