mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
51 lines
1.3 KiB
JavaScript
51 lines
1.3 KiB
JavaScript
const gulp = require('gulp');
|
|
const path = require('path');
|
|
const ts = require('gulp-typescript');
|
|
const postcss = require('gulp-postcss');
|
|
const cssmin = require('gulp-clean-css');
|
|
const rename = require('gulp-rename');
|
|
|
|
const isProduction = process.env.NODE_ENV === 'production';
|
|
const src = path.join(__dirname, '../packages');
|
|
const dist = path.join(__dirname, isProduction ? '../dist' : '../example/dist');
|
|
const ext = ['js', 'ts', 'pcss', 'json', 'wxml'];
|
|
const tsProject = ts.createProject('tsconfig.json');
|
|
|
|
function copy(ext) {
|
|
return gulp.src([src + '/**/*.' + ext]).pipe(gulp.dest(dist));
|
|
}
|
|
|
|
gulp.task('compile-pcss', () => {
|
|
return gulp
|
|
.src([src + '/**/*.pcss'])
|
|
.pipe(postcss())
|
|
.pipe(cssmin())
|
|
.pipe(
|
|
rename(path => {
|
|
path.extname = '.wxss';
|
|
})
|
|
)
|
|
.pipe(gulp.dest(dist));
|
|
});
|
|
|
|
gulp.task('compile-js', () => copy('js'));
|
|
gulp.task('compile-ts', () =>
|
|
gulp
|
|
.src([src + '/**/*.ts'])
|
|
.pipe(tsProject())
|
|
.on('error', (err) => {
|
|
console.log(err);
|
|
})
|
|
.pipe(gulp.dest(dist))
|
|
);
|
|
gulp.task('compile-json', () => copy('json'));
|
|
gulp.task('compile-wxml', () => copy('wxml'));
|
|
gulp.task('build', ext.map(ext => 'compile-' + ext));
|
|
gulp.start('build');
|
|
|
|
if (!isProduction) {
|
|
ext.forEach(ext => {
|
|
gulp.watch(src + '/**/*.' + ext, ['compile-' + ext]);
|
|
});
|
|
}
|