Process JS files with gulp

This commit is contained in:
Cotes Chung
2021-01-23 15:07:18 +08:00
parent 0e9104a58f
commit da9f7b8218
37 changed files with 380 additions and 326 deletions

10
gulpfile.js/index.js Normal file
View File

@@ -0,0 +1,10 @@
#!/usr/bin/env node
"use strict";
const js = require('./tasks/js');
exports.default = js.build;
/* keep-alive develop mode, without uglify */
exports.dev = js.liveRebuild;