1
0
Code Issues Pull Requests Packages Projects Releases Wiki Activity GitHub Gitee
react-native-pushy/local-cli/cli.json

158 lines
2.8 KiB
JSON
Raw Normal View History

2016-02-14 00:04:42 +08:00
{
"useCommand": true,
"defaultCommand": "help",
"commands": {
2016-04-02 23:39:09 +08:00
"help": {
},
2016-02-14 00:04:42 +08:00
2016-04-02 23:39:09 +08:00
"login":{
2016-02-14 16:47:58 +08:00
},
"logout": {
},
"me": {
2016-02-14 00:04:42 +08:00
},
2016-04-02 23:39:09 +08:00
"createApp": {
"options": {
"name": {
"hasValue": true
},
"platform": {
"hasValue": true
}
}
},
"apps": {
2016-04-03 16:50:28 +08:00
"options": {
"platform": {
"hasValue": true
}
}
2016-04-02 23:39:09 +08:00
},
"deleteApp": {
},
"selectApp": {
"options": {
"platform": {
"hasValue": true
}
}
2016-02-23 00:36:23 +08:00
},
2016-04-02 23:39:09 +08:00
"uploadIpa": {
2016-04-03 15:09:21 +08:00
},
"uploadApk": {
},
2016-04-03 18:04:10 +08:00
"packages": {
"options": {
"platform": {
"hasValue": true
}
}
},
2016-04-02 23:39:09 +08:00
2016-04-03 15:09:21 +08:00
"publish": {
"options": {
"platform": {
"hasValue": true
},
"name": {
"hasValue": true
},
"description": {
"hasValue": true
},
"metaInfo": {
"hasValue": true
}
}
2016-02-23 00:36:23 +08:00
},
2016-04-03 18:04:10 +08:00
"versions": {
"options": {
"platform": {
"hasValue": true
}
}
},
"update": {
"options": {
"platform": {
"hasValue": true
2016-04-05 20:07:23 +08:00
},
"versionId": {
"hasValue": true
},
"packageId": {
"hasValue": true
2016-04-03 18:04:10 +08:00
}
}
},
2016-04-02 23:39:09 +08:00
2016-02-23 00:36:23 +08:00
"build": {
"description": "Bundle javascript and copy assets."
},
"bundle": {
2016-02-24 01:10:49 +08:00
"description": "Bundle javascript code only.",
"options": {
"dev": {
"default": false
},
"platform": {
"hasValue": true
},
"entryFile": {
"default": "index.${platform}.js",
"hasValue": true
},
"intermediaDir": {
"default": "build/intermedia/${platform}",
"hasValue": true
},
"output": {
2016-03-31 16:22:47 +08:00
"default": "build/output/${platform}.${time}.ppk",
2016-02-24 01:10:49 +08:00
"hasValue": true
},
"verbose": {
}
}
2016-02-23 00:36:23 +08:00
},
"release": {
"description": "Push builded file to server."
2016-02-24 01:10:49 +08:00
},
"diff": {
"description": "Create diff patch",
"options": {
"output": {
"default": "build/output/diff",
"hasValue": true
}
}
2016-03-31 17:46:13 +08:00
},
2016-04-04 01:14:47 +08:00
"diffFromApk": {
2016-03-31 17:46:13 +08:00
"description": "Create diff patch from a Android package(.apk)",
"options": {
"output": {
"default": "build/output/diff-${time}.apk-patch",
"hasValue": true
}
}
2016-04-02 13:40:47 +08:00
},
2016-04-04 01:14:47 +08:00
"diffFromIpa": {
2016-04-02 13:40:47 +08:00
"description": "Create diff patch from a iOS package(.ipa)",
"options": {
"output": {
"default": "build/output/diff-${time}.ipa-patch",
"hasValue": true
}
}
2016-02-14 00:04:42 +08:00
}
},
"globalOptions":{
2016-07-30 04:19:42 +08:00
"no-interactive": {
"default": false
}
2016-02-14 00:04:42 +08:00
}
2016-02-23 00:36:23 +08:00
}