[Doc] use cdn to speedup site

This commit is contained in:
陈嘉涵 2019-08-02 15:10:21 +08:00
parent 4c02929d26
commit 4762172f6d
3 changed files with 12 additions and 2 deletions

10
build/release-site.sh Normal file
View File

@ -0,0 +1,10 @@
#!/usr/bin/env sh
rm -rf docs/dist
npx cross-env NODE_ENV=production webpack --config build/webpack.doc.prd.js
superman-cdn cdn /vant-weapp ./docs/dist/*.js
rm -rf docs/dist/*.js
gh-pages -d docs/dist --add

View File

@ -7,7 +7,7 @@ module.exports = Object.assign(config, {
mode: 'production',
output: {
path: path.join(__dirname, '../docs/dist'),
publicPath: 'https://youzan.github.io/vant-weapp/',
publicPath: 'https://b.yzcdn.cn/vant-weapp/',
filename: '[name].[hash:8].js',
chunkFilename: 'async_[name].[chunkhash:8].js'
}

View File

@ -9,8 +9,8 @@
"dev": "node build/dev.js",
"lint": "eslint ./packages --ext .js,.ts",
"release": "sh build/release.sh",
"release:site": "sh build/release-site.sh",
"build:lib": "yarn && rm -rf dist && rm -rf lib && NODE_ENV=production node build/compiler.js",
"build:site": "rm -rf docs/dist && cross-env NODE_ENV=production webpack --config build/webpack.doc.prd.js && gh-pages -d docs/dist",
"build:changelog": "vant-doc changelog --tag v0.5.0 changelog.generated.md"
},
"files": [