-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
33 lines (28 loc) · 1.4 KB
/
gulpfile.js
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
// основной модуль
import gulp from 'gulp';
// импорт путей
import {path} from "./gulp/config/path.js";
// Импорт общих плагинов
import {plugins} from "./gulp/config/plugins.js";
// Передача значений в глобальную переменную, чтобы можно было исп. их в задачах
global.app = {
path,
gulp,
plugins
};
// импорт задач для последующего их выполнения в gulp.task
import {copy} from './gulp/tasks/copy.js';
import {ttfToWoff, writeFontsInFile, ttfToWoff2} from "./gulp/tasks/fonts.js";
import {deleteOld} from "./gulp/tasks/clear.js";
import {watcher} from "./gulp/tasks/watcher.js";
import {html} from "./gulp/tasks/html.js";
import {scss} from "./gulp/tasks/scss.js";
import {js} from "./gulp/tasks/js.js";
import {images} from "./gulp/tasks/images.js";
const mainTasks = gulp.parallel(copy, html, scss, js, images)
const fonts = gulp.series(ttfToWoff, ttfToWoff2, writeFontsInFile,)
// Сбор задач в одну кучу с просьбой о последовательном исполнении этих задач
const dev = gulp.series(deleteOld, mainTasks, fonts, watcher)
// const dev = gulp.series(deleteOld, copy, writeFontsInFile)
// Запуск просьбы о исполнении задач
gulp.task('default', dev);