mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 20:51:07 +08:00
Merge pull request #12057 from storybookjs/12055-docs-check-fix-absolute-paths
Addon-docs: Fix main check for absolute config dirs
This commit is contained in:
commit
6bc1e16cf9
@ -23,7 +23,10 @@ export const verifyDocsBeforeControls = (addons: Entry[]) => {
|
||||
};
|
||||
|
||||
export const ensureDocsBeforeControls = (configDir: string) => {
|
||||
const mainFile = path.join(process.cwd(), configDir, 'main');
|
||||
const mainFile = path.isAbsolute(configDir)
|
||||
? path.join(configDir, 'main')
|
||||
: path.join(process.cwd(), configDir, 'main');
|
||||
|
||||
try {
|
||||
// eslint-disable-next-line global-require,import/no-dynamic-require
|
||||
const main = require(mainFile);
|
||||
|
Loading…
x
Reference in New Issue
Block a user