diff --git a/local-cli/cli.json b/local-cli/cli.json index fee3206..c46dda7 100644 --- a/local-cli/cli.json +++ b/local-cli/cli.json @@ -124,7 +124,7 @@ } } }, - "diffWithApk": { + "diffFromApk": { "description": "Create diff patch from a Android package(.apk)", "options": { "output": { @@ -133,7 +133,7 @@ } } }, - "diffWithIpa": { + "diffFromIpa": { "description": "Create diff patch from a iOS package(.ipa)", "options": { "output": { diff --git a/local-cli/src/bundle.js b/local-cli/src/bundle.js index b64d1aa..f3b4532 100644 --- a/local-cli/src/bundle.js +++ b/local-cli/src/bundle.js @@ -375,7 +375,7 @@ export const commands = { await diffWithPPK(origin, next, realOutput, 'index.bundlejs'); }, - async diffWithApk({args, options}) { + async diffFromApk({args, options}) { const [origin, next] = args; const {output} = options; @@ -389,7 +389,7 @@ export const commands = { await diffWithPackage(origin, next, realOutput, 'assets/index.android.bundle'); }, - async diffWithIpa({args, options}) { + async diffFromIpa({args, options}) { const [origin, next] = args; const {output} = options;