1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-11-26 22:41:17 +02:00

Chore: Rename instances of yarn run to just yarn

This commit is contained in:
Laurent Cozic
2024-01-26 20:19:28 +00:00
parent 999baf4b3d
commit c94ec4e064
35 changed files with 73 additions and 73 deletions

View File

@@ -8,10 +8,10 @@ async function main() {
await gitPullTry();
chdir(rootDir);
await execCommand('yarn run tsc');
await execCommand('yarn tsc');
chdir(workDir);
await execCommand('yarn run dist');
await execCommand('yarn dist');
const newVersion = (await execCommand('npm version patch')).trim();