Configuration struct to hold bundle parameters
| 22 | |
| 23 | // Configuration struct to hold bundle parameters |
| 24 | type BundleConfig struct { |
| 25 | RemoteURL string |
| 26 | AuthKey string |
| 27 | AppName string |
| 28 | Environment string |
| 29 | Description string |
| 30 | TargetVersion string |
| 31 | ProjectDir string |
| 32 | OSName string |
| 33 | IsTypescriptProject string |
| 34 | DisableMinify bool |
| 35 | Hermes bool |
| 36 | } |
| 37 | |
| 38 | // PushBundle uploads a new bundle to the server |
| 39 | func PushBundle(config BundleConfig) error { |
nothing calls this directly
no outgoing calls
no test coverage detected