storybook/code/addons/links/scripts/fix-preview-api-reference.ts
Norbert de Langen c618373f85
Fix the d.ts file of addon-links, mark LinkTo in index as deprecated
Add react entrypoint to types exports map
2023-01-18 14:10:54 +01:00

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);
});