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' +));