@apollosproject/cli
Advanced tools
Comparing version 0.1.3 to 0.1.4
@@ -5,2 +5,10 @@ # Changelog | ||
## [0.1.4](https://github.com/apollosproject/cli/compare/v0.1.3...v0.1.4) (2022-06-09) | ||
### Bug Fixes | ||
* sets correct android build number offset ([0a3a561](https://github.com/apollosproject/cli/commit/0a3a56131a52d3e1aaf8793e57c8d30380e66b53)) | ||
* surround bundle ID in quotes in the case of hyphens ([450d6f6](https://github.com/apollosproject/cli/commit/450d6f645932c0b6b435707f982f0b0617dfddfb)) | ||
## [0.1.3](https://github.com/apollosproject/cli/compare/v0.1.2...v0.1.3) (2022-06-06) | ||
@@ -7,0 +15,0 @@ |
@@ -172,6 +172,10 @@ import fs from 'fs'; | ||
try { | ||
await execa(`${scriptsDir}/deploy-android.sh`, [track, options.offset]); | ||
await execa(`${scriptsDir}/deploy-android.sh`, [ | ||
track, | ||
options.versionCodeOffset, | ||
]); | ||
} catch (e) { | ||
spinner.fail('Failed'); | ||
consola.log(e.stdout); | ||
consola.log(e.stderr); | ||
process.exit(1); | ||
@@ -178,0 +182,0 @@ } |
{ | ||
"name": "@apollosproject/cli", | ||
"version": "0.1.3", | ||
"version": "0.1.4", | ||
"repository": "github:apollosproject/cli", | ||
@@ -26,3 +26,3 @@ "description": "", | ||
"scripts": { | ||
"postbump": "yarn test -t version -u", | ||
"postbump": "yarn test -t version -u && git add __tests__/__snapshots__/index.tests.js.snap", | ||
"postchangelog": "sed -i \"\" \"s/### \\[/## \\[/g\" CHANGELOG.md", | ||
@@ -29,0 +29,0 @@ "posttag": "git push --follow-tags origin master && yarn publish . && gh-release --yes" |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
33438
469