mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 02:21:07 +08:00
83 lines
2.1 KiB
TypeScript
83 lines
2.1 KiB
TypeScript
import { join } from 'node:path';
|
|
|
|
import { dts, nodeInternals, process } from '../../../scripts/prepare/tools';
|
|
import pkg from '../package.json';
|
|
import { getEntries } from './entries';
|
|
|
|
async function run() {
|
|
const cwd = process.cwd();
|
|
|
|
const flags = process.argv.slice(2);
|
|
|
|
const selection = flags[0] || 'all';
|
|
|
|
const entries = getEntries(cwd);
|
|
const external = [
|
|
...Object.keys((pkg as any).dependencies || {}),
|
|
...Object.keys((pkg as any).peerDependencies || {}),
|
|
...nodeInternals,
|
|
'typescript',
|
|
'storybook',
|
|
|
|
'storybook/manager-api',
|
|
'storybook/preview-api',
|
|
'storybook/theming',
|
|
|
|
'storybook/test',
|
|
'storybook/test/spy',
|
|
'storybook/test/preview',
|
|
|
|
'storybook/measure',
|
|
'storybook/measure/preview',
|
|
|
|
'storybook/highlight',
|
|
'storybook/highlight/preview',
|
|
|
|
'storybook/outline',
|
|
'storybook/outline/preview',
|
|
|
|
'storybook/backgrounds',
|
|
'storybook/backgrounds/preview',
|
|
|
|
'storybook/actions',
|
|
'storybook/actions/preview',
|
|
'storybook/actions/decorator',
|
|
|
|
'storybook/viewport',
|
|
'storybook/viewport/preview',
|
|
|
|
'storybook/internal/builder-manager',
|
|
'storybook/internal/channels',
|
|
'storybook/internal/client-logger',
|
|
'storybook/internal/common',
|
|
'storybook/internal/component-testing',
|
|
'storybook/internal/component-testing/preview',
|
|
'storybook/internal/components',
|
|
'storybook/internal/core-events',
|
|
'storybook/internal/core-server',
|
|
'storybook/internal/csf-tools',
|
|
'storybook/internal/docs-tools',
|
|
'storybook/internal/node-logger',
|
|
'storybook/internal/router',
|
|
'storybook/internal/telemetry',
|
|
'storybook/internal/types',
|
|
'storybook/internal/instrumenter',
|
|
];
|
|
|
|
const all = entries.filter((e) => e.dts);
|
|
const list = selection === 'all' ? all : [all[Number(selection)]];
|
|
|
|
console.log('Generating d.ts files for', list.map((i) => i.file).join(', '));
|
|
|
|
await Promise.all(
|
|
list.map(async (i) => {
|
|
await dts(i.file, [...external, ...i.externals], join(__dirname, '..', 'tsconfig.json'));
|
|
})
|
|
);
|
|
}
|
|
|
|
run().catch((e) => {
|
|
process.stderr.write(e.toString());
|
|
process.exit(1);
|
|
});
|