mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-12-10 19:54:15 +03:00
ESM updates
This commit is contained in:
parent
75b73ae6ed
commit
e202cef3b3
|
|
@ -1,14 +1,18 @@
|
|||
import type { StorybookConfig } from '@storybook/react-webpack5';
|
||||
|
||||
import { join, dirname } from 'path';
|
||||
import { dirname } from 'node:path';
|
||||
import { fileURLToPath } from 'node:url';
|
||||
|
||||
/**
|
||||
* This function is used to resolve the absolute path of a package.
|
||||
* It is needed in projects that use Yarn PnP or are set up within a monorepo.
|
||||
*/
|
||||
function getAbsolutePath(value: string): any {
|
||||
return dirname(require.resolve(join(value, 'package.json')));
|
||||
function getAbsolutePath(packageName: string) {
|
||||
return dirname(
|
||||
fileURLToPath(import.meta.resolve(`${packageName}/package.json`)),
|
||||
);
|
||||
}
|
||||
|
||||
const config: StorybookConfig = {
|
||||
stories: ['../src/**/*.mdx', '../src/**/*.stories.@(js|jsx|mjs|ts|tsx)'],
|
||||
addons: [getAbsolutePath('@storybook/addon-onboarding')],
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user