fixes for prep

This commit is contained in:
Norbert de Langen 2022-06-23 10:17:34 +02:00
parent 533fd71be6
commit cc53c3587b
No known key found for this signature in database
GPG Key ID: FD0E78AF9A837762
3 changed files with 9 additions and 1 deletions

View File

@ -1,6 +1,8 @@
import { logger } from '@storybook/node-logger';
// @ts-ignore
import betterOpn from 'better-opn'; // betterOpn alias used because also loading open
import open from 'open';
// @ts-ignore
import getDefaultBrowser from 'x-default-browser';
import dedent from 'ts-dedent';

View File

@ -1,3 +1,4 @@
// @ts-ignore
import Watchpack from 'watchpack';
import slash from 'slash';
import fs from 'fs';

View File

@ -1 +1,6 @@
export * from './dist/types/utils/prebuilt-manager.d';
import type { Options } from '@storybook/core-common';
export function getPrebuiltDir(options: Options): Promise<string | false>;
export type DEFAULT_ADDONS = string[];
export type IGNORED_ADDONS = string[];