-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.ts
97 lines (84 loc) · 2.75 KB
/
gulpfile.ts
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
import * as gulp from "gulp";
import { TaskFunction } from "gulp";
import * as colors from "colors";
import { TaskCallback } from "undertaker";
import { dist, path } from "./gulp"; // Конфиги и плагины.
import {
cleaner,
otfToTtf, ttfToWoff, ttfToWoff2, fontToCss, img,
html,
scss,
typescript, js,
server,
assets, spriteSvg, zip,
} from './gulp';
/**
* Задача конвертации шрифтов и создания CSS с подключением шрифтов.
*/
const fonts: TaskFunction = gulp.series(otfToTtf, ttfToWoff, ttfToWoff2, fontToCss);
/**
* Основные задачи.
*/
const mainTask: TaskFunction = gulp.series(
fonts,
gulp.parallel(assets, img, html, scss, gulp.series(typescript, js), spriteSvg)
);
/**
* Задачи наблюдателя за изменением файлов.
*/
const watcher: TaskFunction = (): void => {
gulp.watch(path.watch.assets, assets);
gulp.watch(path.watch.img, img);
gulp.watch(path.watch.html, gulp.series(scss, html));
gulp.watch(path.watch.scss, scss);
gulp.watch(path.watch.ts, typescript);
gulp.watch(path.watch.js, js);
gulp.watch(path.watch.svgIcon, spriteSvg);
};
/**
* Задачи режима разработки.
*/
const development: TaskFunction = gulp.series(
(cb: TaskCallback): void => {
console.log(colors.green('*** Запущена задача сборки в режиме разработки.'));
cb();
},
cleaner,
mainTask,
gulp.parallel(watcher, server),
);
/**
* Задачи сборки в режиме "продакшн".
*/
export const production: TaskFunction = gulp.series(
(cb: TaskCallback): void => {
console.log(colors.green('*** Запущена задача сборки в режиме "продакшн".'));
cb();
},
cleaner,
mainTask,
);
/**
* Задачи сборки дистрибутива в отдельную директорию, в режиме продакшн.
*/
const distributive: TaskFunction = gulp.series(cleaner, production, dist);
/**
* Задача конвертации шрифтов и формирования файла fonts.scss.
*/
gulp.task('fonts', fonts);
/**
* Задача создания спрайта SVG из SVG картинок.
*/
gulp.task('sprite', gulp.series(cleaner, spriteSvg));
/**
* Архивация результатов сборки в zip архив.
*/
gulp.task('zip', gulp.series(cleaner, production, zip));
/**
* Задача сборки дистрибутива в отдельную директорию, в режиме продакшн.
*/
gulp.task('dist', distributive);
/**
* Задача по умолчанию.
*/
gulp.task('default', development);