1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-24 10:27:10 +02:00

Tools: Build mobile app before release

This commit is contained in:
Laurent Cozic 2022-10-11 14:43:39 +01:00
parent cac10c4e29
commit 6f6f427356
2 changed files with 5 additions and 2 deletions

View File

@ -1,7 +1,7 @@
/* eslint-disable import/prefer-default-export */ /* eslint-disable import/prefer-default-export */
// This contains the CodeMirror instance, which needs to be built into a bundle // This contains the CodeMirror instance, which needs to be built into a bundle
// using `npm run buildInjectedJs`. This bundle is then loaded from // using `yarn run buildInjectedJs`. This bundle is then loaded from
// NoteEditor.tsx into the webview. // NoteEditor.tsx into the webview.
// //
// In general, since this file is harder to debug due to the intermediate built // In general, since this file is harder to debug due to the intermediate built

View File

@ -1,5 +1,5 @@
import * as fs from 'fs-extra'; import * as fs from 'fs-extra';
import { execCommandVerbose, execCommandWithPipes, githubRelease, githubOauthToken, fileExists, gitPullTry, completeReleaseWithChangelog } from './tool-utils'; import { execCommandVerbose, execCommandWithPipes, githubRelease, githubOauthToken, fileExists, gitPullTry, completeReleaseWithChangelog, execCommand2 } from './tool-utils';
const path = require('path'); const path = require('path');
const fetch = require('node-fetch'); const fetch = require('node-fetch');
const uriTemplate = require('uri-template'); const uriTemplate = require('uri-template');
@ -151,6 +151,9 @@ async function main() {
const isPreRelease = argv.type === 'prerelease'; const isPreRelease = argv.type === 'prerelease';
process.chdir(rnDir);
await execCommand2('yarn run build', { showStdout: false });
if (isPreRelease) console.info('Creating pre-release'); if (isPreRelease) console.info('Creating pre-release');
console.info('Updating version numbers in build.gradle...'); console.info('Updating version numbers in build.gradle...');