build(ci): use miniprogram-ci to upload example

This commit is contained in:
rex 2020-05-07 10:09:26 +08:00
parent 8c31d81080
commit 00d16130d9
4 changed files with 2234 additions and 86 deletions

1
.gitignore vendored
View File

@ -9,3 +9,4 @@ example/dist
.history
changelog.generated.md
package-lock.json
build/private.wx1c01b35002d3ba14.key

19
build/upload.js Normal file
View File

@ -0,0 +1,19 @@
const ci = require('miniprogram-ci');
const path = require('path');
const config = require('../example/project.config.json');
const package = require('../package.json');
const project = new ci.Project({
appid: config.appid,
type: 'miniProgram',
projectPath: path.join(__dirname, '../example'),
privateKeyPath: path.join(__dirname, './private.wx1c01b35002d3ba14.key'),
ignores: ['node_modules/**/*'],
});
ci.upload({
project,
version: package.version,
desc: package.description,
setting: config.setting,
});

View File

@ -14,7 +14,8 @@
"release": "sh build/release.sh",
"release:site": "sh build/release-site.sh",
"build:lib": "yarn && npx gulp -f build/compiler.js --series buildEs buildLib",
"build:changelog": "vant changelog --tag v1.1.0 ./docs/markdown/changelog.generated.md"
"build:changelog": "vant changelog --tag v1.1.0 ./docs/markdown/changelog.generated.md",
"upload:weapp": "node build/upload.js"
},
"files": [
"dist",
@ -68,6 +69,7 @@
"less-loader": "^5.0.0",
"lint-staged": "^10.0.0",
"miniprogram-api-typings": "2.10.4",
"miniprogram-ci": "^1.0.27",
"postcss-loader": "^3.0.0",
"prettier": "^2.0.5",
"progress-bar-webpack-plugin": "^1.11.0",

2296
yarn.lock

File diff suppressed because it is too large Load Diff