mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
20 lines
535 B
TypeScript
20 lines
535 B
TypeScript
import { readFile, writeFile } from 'fs-extra';
|
|
|
|
/* I wish this wasn't needed..
|
|
* There seems to be some bug in tsup / the unlaying lib that does DTS bundling
|
|
* ...that makes it mess up the generation.
|
|
*/
|
|
const run = async () => {
|
|
const content = await readFile('./dist/index.d.ts', 'utf-8');
|
|
|
|
const regexp = /'lib\/preview-api/;
|
|
const replaced = content.replace(regexp, "'@storybook/preview-api");
|
|
|
|
await writeFile('./dist/index.d.ts', replaced);
|
|
};
|
|
|
|
run().catch((error) => {
|
|
console.error(error);
|
|
process.exit(1);
|
|
});
|