1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-11-29 22:48:10 +02:00

Tools: Use Yarn 3 to manage monorepo (#5833)

This commit is contained in:
Laurent
2021-12-20 16:08:43 +01:00
committed by GitHub
parent dea79fa3b7
commit 7f64fbfd9b
127 changed files with 32340 additions and 261687 deletions

View File

@@ -6,7 +6,7 @@ const rootDir = `${__dirname}/..`;
const { execCommand, downloadFile, fileSha256, unlinkForce } = require('./tool-utils.js');
async function main() {
const url = await execCommand('npm view joplin dist.tarball');
const url = await execCommand('yarn view joplin dist.tarball');
const targetPath = `${rootDir}/latest-cli.tar.gz`;
await unlinkForce(targetPath);
await downloadFile(url, targetPath);