mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 10:22:44 +08:00
20 lines
527 B
JavaScript
20 lines
527 B
JavaScript
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,
|
|
});
|