docs: using @vant/cli to build site

This commit is contained in:
chenjiahan 2021-04-10 15:20:12 +08:00 committed by neverland
parent 15fe068955
commit da2e0faaec
6 changed files with 6705 additions and 2963 deletions

View File

@ -1,12 +1,15 @@
const path = require('path');
const serve = require('webpack-serve');
const config = require('./webpack.doc.dev');
const { dev } = require('@vant/cli');
const { exec } = require('child_process');
const gulpConfig = path.resolve(__dirname, './compiler.js');
serve({}, { config });
async function run() {
await dev();
const p = exec(`npx gulp -f ${gulpConfig} buildExample --color`);
p.stdout.on('data', (stdout) => console.info(stdout));
p.stderr.on('data', (stderr) => console.info(stderr));
const p = exec(`npx gulp -f ${gulpConfig} buildExample --color`);
p.stdout.on('data', (stdout) => console.info(stdout));
p.stderr.on('data', (stderr) => console.info(stderr));
}
run();

View File

@ -1,27 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-Equiv="Cache-Control" Content="no-cache" />
<meta http-Equiv="Pragma" Content="no-cache" />
<meta http-Equiv="Expires" Content="0" />
<link rel="shortcut icon" href="https://img.yzcdn.cn/zanui/vant/vant-2017-12-18.ico">
<title>Vant Weapp - 轻量、可靠的小程序 UI 组件库</title>
<script>window.Promise || document.write('<script src="//img.yzcdn.cn/huiyi/build/h5/js/pinkie.min.js"><\/script>');</script>
<script>
var _hmt = _hmt || [];
(function() {
var hm = document.createElement("script");
hm.src = "https://hm.baidu.com/hm.js?ad6b5732c36321f2dafed737ac2da92f";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
})();
</script>
</head>
<body ontouchstart>
<div id="app"></div>
</body>
</html>

View File

@ -28,7 +28,7 @@
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "vant commit-lint"
"commit-msg": "vant-cli commit-lint"
}
},
"lint-staged": {
@ -43,48 +43,24 @@
},
"homepage": "https://github.com/youzan/vant-weapp#readme",
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.5.5",
"@vant/cli": "^1.0.3",
"@vant/doc": "^2.5.5",
"@vant/eslint-config": "^2.2.2",
"@vant/cli": "^3.9.3",
"@vant/icons": "1.5.2",
"@vant/markdown-loader": "^2.3.0",
"@vant/stylelint-config": "^1.3.0",
"autoprefixer": "^10.0.0",
"babel-loader": "^8.0.0",
"cross-env": "^7.0.0",
"css-loader": "^5.0.0",
"cssnano": "^4.1.10",
"eslint": "^6.1.0",
"gh-pages": "^3.0.0",
"gulp": "^4.0.2",
"gulp-insert": "^0.5.0",
"gulp-less": "^4.0.1",
"gulp-postcss": "^9.0.0",
"gulp-rename": "^2.0.0",
"html-webpack-plugin": "^4.0.0",
"less": "^3.9.0",
"less-loader": "^7.0.0",
"lint-staged": "^10.0.0",
"miniprogram-api-typings": "^3.1.6",
"miniprogram-ci": "^1.0.27",
"postcss": "^8.1.1",
"postcss-loader": "^4.0.0",
"prettier": "^2.0.5",
"progress-bar-webpack-plugin": "^2.0.0",
"style-loader": "^2.0.0",
"stylelint": "^13.0.0",
"tscpaths": "^0.0.9",
"typescript": "^4.0.0",
"vue": "2.6.10",
"vue-loader": "^15.7.1",
"vue-router": "^3.1.1",
"vue-template-compiler": "2.6.10",
"webpack": "^4.39.1",
"webpack-cli": "^3.3.6",
"webpack-serve": "^2.0.3"
"vue": "^3.0.0",
"@vue/compiler-sfc": "^3.0.0"
},
"prettier": {
"singleQuote": true,

358
vant.config.js Normal file
View File

@ -0,0 +1,358 @@
module.exports = {
name: 'vant-weapp',
build: {
srcDir: 'packages',
site: {
publicPath: '/vant-weapp/',
},
},
site: {
// versions: [
// { label: 'Vant v1', link: '/vant/v1/' },
// { label: 'Vant v2', link: '/vant/' },
// { label: 'Vant Weapp', link: '/vant-weapp/' },
// ],
title: 'Vant Weapp',
description: '轻量、可靠的小程序 UI 组件库',
logo: 'https://img.yzcdn.cn/vant/logo.png',
simulatorUrl: 'https://vant-contrib.gitee.io/vant/mobile.html#/zh-CN/',
links: [
{
logo: 'https://b.yzcdn.cn/vant/logo/github.svg',
url: 'https://github.com/youzan/vant-weapp',
},
],
baiduAnalytics: {
seed: 'ad6b5732c36321f2dafed737ac2da92f',
},
nav: [
{
title: '开发指南',
items: [
{
path: 'home',
title: '介绍',
},
{
path: 'quickstart',
title: '快速上手',
},
{
path: 'changelog',
title: '更新日志',
},
{
path: 'custom-style',
title: '样式覆盖',
},
{
path: 'theme',
title: '定制主题',
},
],
},
{
title: '基础组件',
items: [
{
path: 'button',
title: 'Button 按钮',
},
{
path: 'cell',
title: 'Cell 单元格',
},
{
path: 'icon',
title: 'Icon 图标',
},
{
path: 'image',
title: 'Image 图片',
},
{
path: 'col',
title: 'Layout 布局',
},
{
path: 'popup',
title: 'Popup 弹出层',
},
{
path: 'style',
title: 'Style 内置样式',
},
{
path: 'toast',
title: 'Toast 轻提示',
},
],
},
{
title: '表单组件',
items: [
{
path: 'calendar',
title: 'Calendar 日历',
},
{
path: 'cascader',
title: 'Cascader 级联选择',
},
{
path: 'checkbox',
title: 'Checkbox 复选框',
},
{
path: 'datetime-picker',
title: 'DatetimePicker 时间选择',
},
{
path: 'field',
title: 'Field 输入框',
},
{
path: 'form',
title: 'Form 表单',
},
{
path: 'number-keyboard',
title: 'NumberKeyboard 数字键盘',
},
{
path: 'password-input',
title: 'PasswordInput 密码输入框',
},
{
path: 'picker',
title: 'Picker 选择器',
},
{
path: 'radio',
title: 'Radio 单选框',
},
{
path: 'rate',
title: 'Rate 评分',
},
{
path: 'search',
title: 'Search 搜索',
},
{
path: 'slider',
title: 'Slider 滑块',
},
{
path: 'stepper',
title: 'Stepper 步进器',
},
{
path: 'switch',
title: 'Switch 开关',
},
{
path: 'uploader',
title: 'Uploader 文件上传',
},
],
},
{
title: '反馈组件',
items: [
{
path: 'action-sheet',
title: 'ActionSheet 动作面板',
},
{
path: 'dialog',
title: 'Dialog 弹出框',
},
{
path: 'dropdown-menu',
title: 'DropdownMenu 下拉菜单',
},
{
path: 'loading',
title: 'Loading 加载',
},
{
path: 'notify',
title: 'Notify 消息通知',
},
{
path: 'overlay',
title: 'Overlay 遮罩层',
},
{
path: 'pull-refresh',
title: 'PullRefresh 下拉刷新',
},
{
path: 'share-sheet',
title: 'ShareSheet 分享面板',
},
{
path: 'swipe-cell',
title: 'SwipeCell 滑动单元格',
},
],
},
{
title: '展示组件',
items: [
{
path: 'badge',
title: 'Badge 徽标',
},
{
path: 'circle',
title: 'Circle 环形进度条',
},
{
path: 'collapse',
title: 'Collapse 折叠面板',
},
{
path: 'count-down',
title: 'CountDown 倒计时',
},
{
path: 'divider',
title: 'Divider 分割线',
},
{
path: 'empty',
title: 'Empty 空状态',
},
{
path: 'image-preview',
title: 'ImagePreview 图片预览',
},
{
path: 'lazyload',
title: 'Lazyload 懒加载',
},
{
path: 'list',
title: 'List 列表',
},
{
path: 'notice-bar',
title: 'NoticeBar 通知栏',
},
{
path: 'popover',
title: 'Popover 气泡弹出框',
},
{
path: 'progress',
title: 'Progress 进度条',
},
{
path: 'skeleton',
title: 'Skeleton 骨架屏',
},
{
path: 'steps',
title: 'Steps 步骤条',
},
{
path: 'sticky',
title: 'Sticky 粘性布局',
},
{
path: 'swipe',
title: 'Swipe 轮播',
},
{
path: 'tag',
title: 'Tag 标签',
},
],
},
{
title: '导航组件',
items: [
{
path: 'action-bar',
title: 'ActionBar 动作栏',
},
{
path: 'grid',
title: 'Grid 宫格',
},
{
path: 'index-bar',
title: 'IndexBar 索引栏',
},
{
path: 'nav-bar',
title: 'NavBar 导航栏',
},
{
path: 'pagination',
title: 'Pagination 分页',
},
{
path: 'sidebar',
title: 'Sidebar 侧边导航',
},
{
path: 'tab',
title: 'Tab 标签页',
},
{
path: 'tabbar',
title: 'Tabbar 标签栏',
},
{
path: 'tree-select',
title: 'TreeSelect 分类选择',
},
],
},
{
title: '业务组件',
items: [
{
path: 'address-edit',
title: 'AddressEdit 地址编辑',
},
{
path: 'address-list',
title: 'AddressList 地址列表',
},
{
path: 'area',
title: 'Area 省市区选择',
},
{
path: 'card',
title: 'Card 商品卡片',
},
{
path: 'contact-card',
title: 'ContactCard 联系人卡片',
},
{
path: 'contact-edit',
title: 'ContactEdit 联系人编辑',
},
{
path: 'contact-list',
title: 'ContactList 联系人列表',
},
{
path: 'coupon-list',
title: 'Coupon 优惠券',
},
{
path: 'submit-bar',
title: 'SubmitBar 提交订单栏',
},
],
},
],
},
};

9236
yarn.lock

File diff suppressed because it is too large Load Diff