[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"] "exclude": ["transform-es2015-typeof-symbol"]
} }
] ]
], ]
"plugins": ["transform-runtime"]
} }

View File

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

View File

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

View File

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