WeChat Mini Program px to rpx converter
$ npm install --save-dev gulp-wx_px2rpxconst gulp = require('gulp');
const px2rpx = require('gulp-wx_px2rpx');
gulp.task('default', function (done) {
gulp.src('./css/*.css')
.pipe(px2rpx({
screenWidth: 750, // Default screen width: 750
wxappScreenWidth: 750, // WeChat Mini Program screen width: 750
remPrecision: 6 // Fractional precision, default 6
}))
.pipe(gulp.dest('./wxappCss'))
done();
});