From c7107be4207c1d232c48a7d77bc3d7eec9f6a764 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E5=98=89=E6=B6=B5?= Date: Thu, 9 Aug 2018 19:10:49 +0800 Subject: [PATCH] [build] fix example build --- .babelrc | 3 +-- build/build.js | 38 ++++++++++++++++++++------------------ example/app.wxss | 2 +- packages/col/README.md | 8 +++----- 4 files changed, 25 insertions(+), 26 deletions(-) diff --git a/.babelrc b/.babelrc index c0fd14ec..021c2576 100644 --- a/.babelrc +++ b/.babelrc @@ -8,6 +8,5 @@ "exclude": ["transform-es2015-typeof-symbol"] } ] - ], - "plugins": ["transform-runtime"] + ] } diff --git a/build/build.js b/build/build.js index 628bc525..6817070b 100644 --- a/build/build.js +++ b/build/build.js @@ -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)); }); diff --git a/example/app.wxss b/example/app.wxss index ebd5a030..cf06e0a9 100644 --- a/example/app.wxss +++ b/example/app.wxss @@ -1,4 +1,4 @@ -@import "dist/index.wxss"; +@import "./dist/common/index.wxss"; page { color: #333; diff --git a/packages/col/README.md b/packages/col/README.md index e4678ef1..c666985d 100644 --- a/packages/col/README.md +++ b/packages/col/README.md @@ -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" } ```