From a7f4e161de818f63115e1861c6d199020aec03a9 Mon Sep 17 00:00:00 2001 From: Alex Ling Date: Sun, 19 Jul 2020 13:53:50 +0000 Subject: [PATCH] Add `make setup` --- Makefile | 4 ++++ gulpfile.js | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/Makefile b/Makefile index 4a075b5..7864bab 100644 --- a/Makefile +++ b/Makefile @@ -7,6 +7,10 @@ uglify: yarn yarn uglify +setup: libs + yarn + yarn gulp dev + build: libs crystal build src/mango.cr --release --progress diff --git a/gulpfile.js b/gulpfile.js index 0228d62..8885349 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -50,3 +50,7 @@ gulp.task('default', gulp.parallel( gulp.series('copy-uikit-icons', 'img'), 'copy-files' )); + +gulp.task('dev', gulp.parallel( + 'copy-uikit-js', 'less', 'copy-uikit-icons' +));