@revopush/code-push-cli 0.0.1 → 0.0.2
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/README.md +459 -566
- package/README_MS.md +837 -0
- package/bin/script/cli.js +0 -0
- package/bin/script/command-executor.js +14 -15
- package/bin/script/command-parser.js +42 -27
- package/bin/script/management-sdk.js +5 -4
- package/package.json +7 -3
- package/script/command-executor.ts +28 -36
- package/script/command-parser.ts +51 -32
- package/script/management-sdk.ts +5 -4
- package/script/types/cli.ts +3 -1
- package/.idea/cli.iml +0 -9
- package/.idea/inspectionProfiles/Project_Default.xml +0 -6
- package/.idea/misc.xml +0 -6
- package/.idea/modules.xml +0 -8
- package/.idea/prettier.xml +0 -6
- package/.idea/vcs.xml +0 -6
package/script/types/cli.ts
CHANGED
|
@@ -107,6 +107,7 @@ export interface IDebugCommand extends ICommand {
|
|
|
107
107
|
export interface IDeploymentAddCommand extends ICommand {
|
|
108
108
|
appName: string;
|
|
109
109
|
deploymentName: string;
|
|
110
|
+
key?: string;
|
|
110
111
|
default: boolean;
|
|
111
112
|
}
|
|
112
113
|
|
|
@@ -144,7 +145,8 @@ export interface ILinkCommand extends ICommand {
|
|
|
144
145
|
}
|
|
145
146
|
|
|
146
147
|
export interface ILoginCommand extends ICommand {
|
|
147
|
-
|
|
148
|
+
apiServerUrl?: string;
|
|
149
|
+
appServerUrl?: string;
|
|
148
150
|
accessKey: string;
|
|
149
151
|
}
|
|
150
152
|
|
package/.idea/cli.iml
DELETED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<module type="JAVA_MODULE" version="4">
|
|
3
|
-
<component name="NewModuleRootManager" inherit-compiler-output="true">
|
|
4
|
-
<exclude-output />
|
|
5
|
-
<content url="file://$MODULE_DIR$" />
|
|
6
|
-
<orderEntry type="inheritedJdk" />
|
|
7
|
-
<orderEntry type="sourceFolder" forTests="false" />
|
|
8
|
-
</component>
|
|
9
|
-
</module>
|
package/.idea/misc.xml
DELETED
package/.idea/modules.xml
DELETED
package/.idea/prettier.xml
DELETED