mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
[build] fix example build
This commit is contained in:
parent
8ce068bcb2
commit
c7107be420
3
.babelrc
3
.babelrc
@ -8,6 +8,5 @@
|
|||||||
"exclude": ["transform-es2015-typeof-symbol"]
|
"exclude": ["transform-es2015-typeof-symbol"]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
],
|
]
|
||||||
"plugins": ["transform-runtime"]
|
|
||||||
}
|
}
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
const path = require('path');
|
||||||
const gulp = require('gulp');
|
const gulp = require('gulp');
|
||||||
const postcss = require('gulp-postcss');
|
const postcss = require('gulp-postcss');
|
||||||
const cssmin = require('gulp-clean-css');
|
const cssmin = require('gulp-clean-css');
|
||||||
@ -10,30 +11,31 @@ const options = gutil.env;
|
|||||||
const isProduction = process.env.NODE_ENV === 'production';
|
const isProduction = process.env.NODE_ENV === 'production';
|
||||||
|
|
||||||
gulp.task('compile-css', () => {
|
gulp.task('compile-css', () => {
|
||||||
return gulp.src(['../../packages/**/*.pcss', '!../../packages/**/_*.pcss'])
|
return gulp
|
||||||
|
.src(['../packages/**/*.pcss', '!../packages/**/_*.pcss'])
|
||||||
.pipe(postcss())
|
.pipe(postcss())
|
||||||
.pipe(cssmin())
|
.pipe(cssmin())
|
||||||
.pipe(rename((path) => {
|
.pipe(
|
||||||
path.extname = '.wxss';
|
rename(path => {
|
||||||
}))
|
path.extname = '.wxss';
|
||||||
|
})
|
||||||
|
)
|
||||||
.pipe(gulp.dest(options.dist));
|
.pipe(gulp.dest(options.dist));
|
||||||
});
|
});
|
||||||
|
|
||||||
gulp.task('compile-js', () => {
|
gulp.task('compile-js', () => {
|
||||||
return gulp.src(['../../packages/**/*.js'])
|
return gulp
|
||||||
.pipe(removeLogging({
|
.src(['../packages/**/*.js'])
|
||||||
methods: isProduction ? ['log', 'info'] : []
|
.pipe(
|
||||||
}))
|
removeLogging({
|
||||||
.pipe(babel({
|
methods: isProduction ? ['log', 'info'] : []
|
||||||
plugins: [['transform-object-rest-spread', { useBuiltIns: true }]],
|
})
|
||||||
presets: [
|
)
|
||||||
['env', {
|
.pipe(
|
||||||
loose: true,
|
babel({
|
||||||
useBuiltIns: true,
|
extends: path.join(__dirname, '../.babelrc')
|
||||||
exclude: ['transform-es2015-typeof-symbol']
|
})
|
||||||
}]
|
)
|
||||||
]
|
|
||||||
}))
|
|
||||||
.pipe(gulp.dest(options.dist));
|
.pipe(gulp.dest(options.dist));
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
@import "dist/index.wxss";
|
@import "./dist/common/index.wxss";
|
||||||
|
|
||||||
page {
|
page {
|
||||||
color: #333;
|
color: #333;
|
||||||
|
@ -4,11 +4,9 @@
|
|||||||
|
|
||||||
在 index.json 中引入组件
|
在 index.json 中引入组件
|
||||||
```json
|
```json
|
||||||
{
|
"usingComponents": {
|
||||||
"usingComponents": {
|
"van-row": "path/to/vant-weapp/dist/row/index",
|
||||||
"van-row": "path/to/vant-weapp/dist/row/index",
|
"van-col": "path/to/vant-weapp/dist/col/index"
|
||||||
"van-col": "path/to/vant-weapp/dist/col/index"
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user