mirror of
https://gitcode.com/github-mirrors/react-native-update-cli.git
synced 2025-09-17 18:06:10 +08:00
Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
da7bdbfdd2 | ||
![]() |
07ee28ba3b |
23
cli.json
23
cli.json
@@ -88,6 +88,29 @@
|
||||
}
|
||||
},
|
||||
|
||||
"updateVersionInfo": {
|
||||
"options": {
|
||||
"platform": {
|
||||
"hasValue": true
|
||||
},
|
||||
"versionId": {
|
||||
"hasValue": true
|
||||
},
|
||||
"name": {
|
||||
"default": false,
|
||||
"hasValue": true
|
||||
},
|
||||
"description": {
|
||||
"default": false,
|
||||
"hasValue": true
|
||||
},
|
||||
"metaInfo": {
|
||||
"default": false,
|
||||
"hasValue": true
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
"build": {
|
||||
"description": "Bundle javascript and copy assets."
|
||||
},
|
||||
|
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "react-native-update-cli",
|
||||
"version": "1.8.1",
|
||||
"version": "1.9.0",
|
||||
"description": "Command tools for javaScript updater with `pushy` service for react native apps.",
|
||||
"main": "index.js",
|
||||
"bin": {
|
||||
|
@@ -149,4 +149,18 @@ export const commands = {
|
||||
});
|
||||
console.log('操作成功');
|
||||
},
|
||||
updateVersionInfo: async function ({ args, options }) {
|
||||
const platform = checkPlatform(
|
||||
options.platform || (await question('平台(ios/android):')),
|
||||
);
|
||||
const { appId } = await getSelectedApp(platform);
|
||||
const versionId = options.versionId || (await chooseVersion(appId)).id;
|
||||
|
||||
const updateParams = {};
|
||||
options.name && (updateParams.name = options.name);
|
||||
options.description && (updateParams.description = options.description);
|
||||
options.metaInfo && (updateParams.metaInfo = options.metaInfo);
|
||||
await put(`/app/${appId}/version/${versionId}`, updateParams);
|
||||
console.log('操作成功');
|
||||
},
|
||||
};
|
||||
|
Reference in New Issue
Block a user