mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
* add src dir && add build * add build watch && change dir name * bower ignore package.json
13 lines
298 B
JavaScript
13 lines
298 B
JavaScript
const gulp = require('gulp');
|
|
const postcss = require('gulp-postcss');
|
|
const cssmin = require('gulp-clean-css');
|
|
|
|
gulp.task('compile', () => {
|
|
return gulp.src('../packages/**/*.wxss')
|
|
.pipe(postcss())
|
|
.pipe(cssmin())
|
|
.pipe(gulp.dest('../dist'));
|
|
});
|
|
|
|
gulp.task('build', ['compile']);
|