v1.11.0-beta
This release introduces support for connecting to the CodePush server via a proxy, and includes a few improvements to the release-*
commands. It is available now on NPM and can be installed by running npm i -g code-push-cli@latest
.
New Features
-
Proxied connections The
code-push login
command will now check for the presence of a system-wide proxy, and use it to connect to the CodePush server. If you don't want the CLI to use this behavior, you can specify the--noProxy
parameter to connect directly to CodePush. Additionally, if you'd like to use a proxy connection to CodePush, which isn't configured system-wide, you can specify the--proxy
parameter.# Ignore any system proxy settings code-push login --noProxy # Specify an explicit proxy server code-push login --proxy https://foo.bar:4563
-
PhoneGap support The
release-cordova
command now supports automatically preparing/building your app if you have the PhoneGap CLI installed as opposed to requiring Cordova.
Bug Fixes
- The
release-react
command now correctly generates your JS bundle file on machines with case-sensitive file systems (e.g. Linux).