mobile-app-builder 0.0.1 → 0.1.0
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.
|
@@ -112,7 +112,7 @@ async function buildAndroid(options) {
|
|
|
112
112
|
await (0, signing_js_1.signArtifact)(outputName, outDir, isAab, appName);
|
|
113
113
|
const tag = `v${appVersion}${profile ? "-" + profile : ""}`;
|
|
114
114
|
const isPrerelease = profile !== "prod";
|
|
115
|
-
const published = await (0, github_js_1.publishGitHubRelease)(tag, destPath, tag, options.notes || "", fullProfileName, isPrerelease);
|
|
115
|
+
const published = await (0, github_js_1.publishGitHubRelease)(tag, destPath, tag, options.notes || ("Release " + tag), fullProfileName, isPrerelease);
|
|
116
116
|
if (options.publish && isAab && published) {
|
|
117
117
|
await (0, github_js_1.triggerGitHubWorkflow)(tag, options.track);
|
|
118
118
|
}
|
package/dist/utils/github.js
CHANGED
|
@@ -180,7 +180,7 @@ async function publishGitHubRelease(tag, assetPath, title, notes, profileName, p
|
|
|
180
180
|
tag,
|
|
181
181
|
assetPath,
|
|
182
182
|
`--title=${title}`,
|
|
183
|
-
`--notes=${notes}`,
|
|
183
|
+
`--notes=${notes || ("Release " + tag)}`,
|
|
184
184
|
];
|
|
185
185
|
if (prerelease) {
|
|
186
186
|
createArgs.push("--prerelease");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mobile-app-builder",
|
|
3
|
-
"version": "0.0
|
|
3
|
+
"version": "0.1.0",
|
|
4
4
|
"description": "Cross-platform CLI builder and signer for mobile applications (Expo, React Native, and Android projects)",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -59,4 +59,4 @@
|
|
|
59
59
|
"url": "https://github.com/georgechitechi/mobile-app-builder/issues"
|
|
60
60
|
},
|
|
61
61
|
"homepage": "https://github.com/georgechitechi/mobile-app-builder#readme"
|
|
62
|
-
}
|
|
62
|
+
}
|