mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 13:31:19 +08:00
Fix yarn task command on Windows machines
This commit is contained in:
parent
40eb3dd2c7
commit
8fca04325d
8
scripts/utils/touch.ts
Normal file
8
scripts/utils/touch.ts
Normal file
@ -0,0 +1,8 @@
|
||||
const isWin = process.platform === 'win32';
|
||||
|
||||
export default function touch(filePath: string) {
|
||||
if (isWin) {
|
||||
return `echo. > ${filePath}`;
|
||||
}
|
||||
return `touch ${filePath}`;
|
||||
}
|
@ -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`,
|
||||
|
Loading…
x
Reference in New Issue
Block a user