mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 14:01:16 +08:00
9 lines
180 B
TypeScript
9 lines
180 B
TypeScript
const isWin = process.platform === 'win32';
|
|
|
|
export default function touch(filePath: string) {
|
|
if (isWin) {
|
|
return `echo. > ${filePath}`;
|
|
}
|
|
return `touch ${filePath}`;
|
|
}
|