mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 19:01:05 +08:00
Revert "feat: make frameworkerLoader load both JS and TS loaders as they will be migrated to TS"
This reverts commit 83e9b5f1
This commit is contained in:
parent
35562a0ab9
commit
5edf6bbfe6
@ -4,7 +4,7 @@ import path from 'path';
|
|||||||
import { Loader } from './Loader';
|
import { Loader } from './Loader';
|
||||||
import { StoryshotsOptions } from '../api/StoryshotsOptions';
|
import { StoryshotsOptions } from '../api/StoryshotsOptions';
|
||||||
|
|
||||||
const loaderScriptName = 'loader';
|
const loaderScriptName = 'loader.js';
|
||||||
|
|
||||||
const isDirectory = (source: string) => fs.lstatSync(source).isDirectory();
|
const isDirectory = (source: string) => fs.lstatSync(source).isDirectory();
|
||||||
|
|
||||||
@ -13,13 +13,7 @@ function getLoaders(): Loader[] {
|
|||||||
.readdirSync(__dirname)
|
.readdirSync(__dirname)
|
||||||
.map(name => path.join(__dirname, name))
|
.map(name => path.join(__dirname, name))
|
||||||
.filter(isDirectory)
|
.filter(isDirectory)
|
||||||
.reduce((acc, framework) => {
|
.map(framework => path.join(framework, loaderScriptName))
|
||||||
const filename = path.join(framework, loaderScriptName);
|
|
||||||
const jsFile = `${filename}.js`;
|
|
||||||
const tsFile = `${filename}.ts`;
|
|
||||||
|
|
||||||
return acc.concat([jsFile, tsFile]);
|
|
||||||
}, [] as string[])
|
|
||||||
.filter(fs.existsSync)
|
.filter(fs.existsSync)
|
||||||
.map(loader => require(loader).default);
|
.map(loader => require(loader).default);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user