[build] fix example build

This commit is contained in:
陈嘉涵 2018-08-09 19:10:49 +08:00
parent 8ce068bcb2
commit c7107be420
4 changed files with 25 additions and 26 deletions

View File

@ -8,6 +8,5 @@
"exclude": ["transform-es2015-typeof-symbol"]
}
]
],
"plugins": ["transform-runtime"]
]
}

View File

@ -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));
});

View File

@ -1,4 +1,4 @@
@import "dist/index.wxss";
@import "./dist/common/index.wxss";
page {
color: #333;

View File

@ -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"
}
```