react-native-update-cli 1.25.0 → 1.25.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/package.js CHANGED
@@ -61,7 +61,7 @@ async function choosePackage(appId) {
61
61
  }
62
62
 
63
63
  const commands = exports.commands = {
64
- uploadIpa: async function ({ args }) {
64
+ uploadIpa: async function ({ args, options }) {
65
65
  const fn = args[0];
66
66
  if (!fn || !fn.endsWith('.ipa')) {
67
67
  throw new Error('使用方法: pushy uploadIpa ipa后缀文件');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-update-cli",
3
- "version": "1.25.0",
3
+ "version": "1.25.1",
4
4
  "description": "Command tools for javaScript updater with `pushy` service for react native apps.",
5
5
  "main": "index.js",
6
6
  "bin": {
package/src/package.js CHANGED
@@ -48,7 +48,7 @@ export async function choosePackage(appId) {
48
48
  }
49
49
 
50
50
  export const commands = {
51
- uploadIpa: async function ({ args }) {
51
+ uploadIpa: async function ({ args, options }) {
52
52
  const fn = args[0];
53
53
  if (!fn || !fn.endsWith('.ipa')) {
54
54
  throw new Error('使用方法: pushy uploadIpa ipa后缀文件');