mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
23 lines
739 B
TypeScript
23 lines
739 B
TypeScript
import globby from 'globby';
|
|
import { logger } from '@storybook/node-logger';
|
|
|
|
interface Options {
|
|
hasTSDependency: boolean;
|
|
}
|
|
|
|
export const warn = ({ hasTSDependency }: Options) => {
|
|
if (!hasTSDependency) {
|
|
const hasTSFiles = !!globby.sync(['**/*.@(ts|tsx)', '!**/node_modules', '!**/*.d.ts']).length;
|
|
if (hasTSFiles) {
|
|
logger.warn(
|
|
'We have detected TypeScript files in your project directory, however TypeScript is not listed as a project dependency.'
|
|
);
|
|
logger.warn('Storybook will continue as though this is a JavaScript project.');
|
|
logger.line();
|
|
logger.info(
|
|
'For more information, see: https://storybook.js.org/docs/configurations/typescript-config/'
|
|
);
|
|
}
|
|
}
|
|
};
|