mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 22:51:18 +08:00
20 lines
433 B
JavaScript
20 lines
433 B
JavaScript
import { $ } from 'zx';
|
|
|
|
/**
|
|
* Create a tmp directory using `mktemp` command and return the result
|
|
*
|
|
* @return {Promise<string>}
|
|
*/
|
|
export async function createTmpDir() {
|
|
return (await $`mktemp -d`).toString().replace('\n', '');
|
|
}
|
|
|
|
/**
|
|
* Copy the source file to the target directory
|
|
*
|
|
* @return {Promise<void>}
|
|
*/
|
|
export async function copy(sourceFile, targetDirectory) {
|
|
return $`cp ${sourceFile} ${targetDirectory}`;
|
|
}
|