forked from Tencent/weui-wxss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
executable file
·81 lines (74 loc) · 2.06 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
const path = require('path');
const gulp = require('gulp');
const less = require('gulp-less');
const rename = require('gulp-rename');
const postcss = require('gulp-postcss');
const cssnano = require('gulp-cssnano');
const header = require('gulp-header');
const autoprefixer = require('autoprefixer');
const pkg = require('./package.json');
const exec = require('child_process').exec;
const replace = require('gulp-replace')
const banner = [
'/*!',
' * WeUI v<%= pkg.version %> (<%= pkg.homepage %>)',
' * Copyright <%= new Date().getFullYear() %> Tencent, Inc.',
' * Licensed under the <%= pkg.license %> license',
' */',
''
].join('\n');
let watchTimeout = null;
gulp.task('build:style', function() {
gulp
.src(['src/**/*.less'], { base: 'src' })
.pipe(less())
.pipe(postcss([autoprefixer(['iOS >= 8', 'Android >= 4.1'])]))
.pipe(
cssnano({
zindex: false,
autoprefixer: false,
discardComments: { removeAll: true },
svgo: false
})
)
.pipe(header(banner, { pkg: pkg }))
// px版本
.pipe(
rename(function(path) {
path.extname = '.wxss';
})
)
.pipe(gulp.dest('dist'))
// rpx版本
.pipe(
replace(/([\d.]+)px/g, function(w, m) {
return `${2 * m}rpx`
})
)
.pipe(gulp.dest('dist-rpx-mode'));
});
gulp.task('build:example', function() {
gulp
.src(
[
'src/*.!(less)',
'src/**/*.!(less)',
],
{ base: 'src' }
)
.pipe(gulp.dest('dist-rpx-mode'))
.pipe(gulp.dest('dist'));
});
gulp.task('build', ['build:style', 'build:example']);
gulp.task('default', ['build:style', 'build:example'], function() {
gulp.watch(path.resolve(__dirname, 'src/**/*')).on('change', function() {
clearTimeout(watchTimeout);
watchTimeout = setTimeout(() => {
gulp.run(['build:style', 'build:example']);
}, 300);
});
});
gulp.task('tag', function() {
const tag = `v${pkg.version}`;
exec(`git tag ${tag}`);
});