-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgulpfile.js
More file actions
31 lines (29 loc) · 714 Bytes
/
gulpfile.js
File metadata and controls
31 lines (29 loc) · 714 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import gulp from 'gulp';
import scripts from './gulp/tasks/scripts.js'
import media, { images, icons } from './gulp/tasks/media.js'
import html from './gulp/tasks/html.js'
import styles from './gulp/tasks/styles.js';
import fonts from './gulp/tasks/fonts.js';
import localServer from './gulp/tasks/localServer.js';
import watch from './gulp/tasks/watch.js'
import clean, { cleanApp, cleanBuild, cleanImg } from './gulp/tasks/clean.js';
import run from './gulp/tasks/run.js';
import build, { destToBuild } from './gulp/tasks/build.js';
export default run;
export {
scripts,
images,
icons,
media,
html,
styles,
fonts,
localServer,
watch,
clean,
cleanApp,
cleanBuild,
cleanImg,
build,
destToBuild
}