Initial commit
This commit is contained in:
31
resources/_keenthemes/tools/gulpfile.js
Normal file
31
resources/_keenthemes/tools/gulpfile.js
Normal file
@ -0,0 +1,31 @@
|
||||
import { cleanTask } from "./gulp/clean.js";
|
||||
import {
|
||||
localHostTask,
|
||||
reloadTask,
|
||||
watchTask,
|
||||
watchSCSSTask,
|
||||
watchJSTask,
|
||||
} from "./gulp/watch.js";
|
||||
import {
|
||||
// rtlTask,
|
||||
// buildBundleTask,
|
||||
compileTask,
|
||||
} from "./gulp/compile.js";
|
||||
|
||||
// Clean tasks:
|
||||
export { cleanTask as clean };
|
||||
|
||||
// Watch tasks:
|
||||
export { localHostTask as localhost };
|
||||
export { reloadTask as reload };
|
||||
export { watchTask as watch };
|
||||
export { watchSCSSTask as watchSCSS };
|
||||
export { watchJSTask as watchJS };
|
||||
|
||||
// Main tasks:
|
||||
// export { rtlTask as rtl };
|
||||
// export { buildBundleTask as buildBundle };
|
||||
export { compileTask as compile };
|
||||
|
||||
// Entry point:
|
||||
export default compileTask;
|
Reference in New Issue
Block a user