-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
executable file
·126 lines (104 loc) · 3.02 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
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
const path = require('path');
const { src, dest, series, watch } = require('gulp');
const load_plugin = require('gulp-load-plugins')();
const minifyjs = require('gulp-minify.js');
const rollup_resolve = require('@rollup/plugin-node-resolve');
const rollup_commonjs = require('@rollup/plugin-commonjs');
const rollup_replace = require('@rollup/plugin-replace');
const _path = './assets';
// --- CSS ---
function css_app() {
return src([
'./src/stylus/*.styl',
])
.pipe(load_plugin.sourcemaps.init())
.pipe(load_plugin.stylus({
'include css': true,
compress: true
}).on('error', load_plugin.notify.onError('<%= error.message %>')))
.pipe(load_plugin.autoprefixer({
remove: false,
cascade: false,
}))
.pipe(load_plugin.cleanCss())
.pipe(load_plugin.sourcemaps.write('../css'))
.pipe(dest(_path + '/css'));
};
const css = series(css_app);
// --- JS ---
function js_app() {
return src([
'./src/js/*.js',
])
.pipe(load_plugin.sourcemaps.init())
.pipe(
load_plugin.rollupEach(
{
plugins: [
rollup_commonjs(),
rollup_resolve(),
rollup_replace({ 'process.env.NODE_ENV': JSON.stringify( 'production' ), preventAssignment: true })
]
},
file => {
return {
format: 'umd',
name: path.basename(file.path, '.js')
}
}
)
)
.pipe(minifyjs())
.pipe(load_plugin.sourcemaps.write("../js"))
.pipe(dest(_path + '/js'));
};
const js = series(js_app);
// --- SVG ---
function svg_mono() {
return src([
_path + '/icons/*.svg',
'!' + _path + '/icons/sprit*.svg',
])
.pipe(load_plugin.svgSymbolView({
name: 'sprite',
svgo: { plugins: [
{ removeAttrs: {attrs: '(fill-rule|clip-rule|fill|color|stroke-linecap|stroke-linejoin|style)'} }
]}
}))
.pipe(dest(_path + '/icons'));
};
function svg_color() {
return src([
_path + '/icons/*.svg',
'!' + _path + '/icons/sprit*.svg',
])
.pipe(load_plugin.svgSymbolView({
name: 'sprite-color',
}))
.pipe(dest(_path + '/icons'));
};
const svg = series(svg_mono, svg_color);
// --- TOOLS ---
function reloader(done) {
load_plugin.livereload.changed('/');
done();
};
function watching() {
load_plugin.livereload.listen({
basePath: './',
start: true
});
// --- CSS
watch(['./src/stylus/**/*.styl'], series(css_app, reloader));
// --- JS
watch(['./src/js/**/*.js'], series(js_app, reloader));
// --- PHP
watch(['*.php', 'views/**/*.php'], reloader);
};
const build = series(svg, css, js);
exports.css = css;
exports.js = js;
exports.svg = svg;
exports.build = build;
exports.watching = watching;
exports.default = series(build);