-
-
Notifications
You must be signed in to change notification settings - Fork 486
/
Copy pathindex.js
84 lines (81 loc) · 1.93 KB
/
index.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
const {
buildWxss,
buildWxml,
buildImage,
buildJson,
buildJs,
copyStatic,
clean,
copy
} = require('./task');
const {
series,
parallel,
watch
} = require('gulp');
const path = require('path');
const componentData = require('./until');
const result = `{common/**,core/**,behaviors,utils,${componentData()}}`;
const isCustom = (result !== '{common/**,core/**,behaviors,utils,}');
const distPath = path.resolve(__dirname, '../dist');
const examplePath = path.resolve(__dirname, '../examples/dist');
const srcPrefix = path.resolve(__dirname, '../src');
const srcDevPath = `${srcPrefix}/**`;
const srcProPath = isCustom ? `${srcPrefix}/${result}` : srcDevPath;
module.exports = {
build: series(
clean(`${distPath}/**/*`),
parallel(
buildWxss(
`${srcProPath}/*.less`,
`!${srcProPath}/_*.less`,
distPath
),
buildWxml(
`${srcProPath}/*.wxml`,
`!${srcProPath}/_*.wxml`,
distPath
),
buildImage(
`${srcProPath}/*.png`,
distPath
),
buildJson(
`${srcProPath}/*.json`,
distPath
),
buildJs(
`${srcProPath}/*.js`,
distPath
),
copyStatic(
srcProPath,
distPath
)
)
),
dev: series(
clean(`${examplePath}/**/*`),
parallel(
buildWxss(
`${srcDevPath}/*.less`,
`!${srcDevPath}/_*.less`,
examplePath
),
copyStatic(
srcDevPath,
examplePath,
'dev'
)
)
),
watch: parallel(
() => {
watch('../src/**/*.less', buildWxss(`${srcDevPath}/*.less`, `!${srcDevPath}/_*.less`, examplePath));
watch('../src/**/*.wxml', copy(srcDevPath, examplePath, 'wxml'));
watch('../src/**/*.wxs', copy(srcDevPath, examplePath, 'wxs'));
watch('../src/**/*.json', copy(srcDevPath, examplePath, 'json'));
watch('../src/**/*.js', copy(srcDevPath, examplePath, 'js'));
}
)
};