mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
30 lines
846 B
JavaScript
30 lines
846 B
JavaScript
const gulp = require('gulp');
|
|
const postcss = require('gulp-postcss');
|
|
const cssmin = require('gulp-clean-css');
|
|
const rename = require('gulp-rename');
|
|
const gutil = require('gulp-util');
|
|
const removeLogging = require('gulp-remove-logging');
|
|
|
|
const options = gutil.env;
|
|
const isProduction = process.env.NODE_ENV === 'production';
|
|
|
|
gulp.task('compile-css', () => {
|
|
return gulp.src(['../../packages/**/*.pcss', '!../../packages/**/_*.pcss'])
|
|
.pipe(postcss())
|
|
.pipe(cssmin())
|
|
.pipe(rename((path) => {
|
|
path.extname = '.wxss';
|
|
}))
|
|
.pipe(gulp.dest(options.dist));
|
|
});
|
|
|
|
gulp.task('compile-js', () => {
|
|
return gulp.src(['../../packages/**/*.js'])
|
|
.pipe(removeLogging({
|
|
methods: isProduction ? ['log', 'info'] : []
|
|
}))
|
|
.pipe(gulp.dest(options.dist));
|
|
});
|
|
|
|
gulp.task('build', ['compile-css', 'compile-js']);
|