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