Fix yarn task command on Windows machines

This commit is contained in:
Valentin Palkovic 2022-12-29 10:17:47 +01:00
parent 40eb3dd2c7
commit 8fca04325d
2 changed files with 11 additions and 2 deletions

8
scripts/utils/touch.ts Normal file
View File

@ -0,0 +1,8 @@
const isWin = process.platform === 'win32';
export default function touch(filePath: string) {
if (isWin) {
return `echo. > ${filePath}`;
}
return `touch ${filePath}`;
}

View File

@ -4,6 +4,7 @@ import path from 'path';
import { exec } from './exec';
// TODO -- should we generate this file a second time outside of CLI?
import storybookVersions from '../../code/lib/cli/src/versions';
import touch from './touch';
export type YarnOptions = {
cwd: string;
@ -25,8 +26,8 @@ export const addPackageResolutions = async ({ cwd, dryRun }: YarnOptions) => {
export const installYarn2 = async ({ cwd, dryRun, debug }: YarnOptions) => {
const command = [
`touch yarn.lock`,
`touch yarnrc.yml`,
touch('yarn.lock'),
touch('yarnrc.yml'),
`yarn set version berry`,
// Use the global cache so we aren't re-caching dependencies each time we run sandbox
`yarn config set enableGlobalCache true`,