mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-03 05:04:51 +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 { StoryshotsOptions } from '../api/StoryshotsOptions';
|
||||
|
||||
const loaderScriptName = 'loader';
|
||||
const loaderScriptName = 'loader.js';
|
||||
|
||||
const isDirectory = (source: string) => fs.lstatSync(source).isDirectory();
|
||||
|
||||
@ -13,13 +13,7 @@ function getLoaders(): Loader[] {
|
||||
.readdirSync(__dirname)
|
||||
.map(name => path.join(__dirname, name))
|
||||
.filter(isDirectory)
|
||||
.reduce((acc, framework) => {
|
||||
const filename = path.join(framework, loaderScriptName);
|
||||
const jsFile = `${filename}.js`;
|
||||
const tsFile = `${filename}.ts`;
|
||||
|
||||
return acc.concat([jsFile, tsFile]);
|
||||
}, [] as string[])
|
||||
.map(framework => path.join(framework, loaderScriptName))
|
||||
.filter(fs.existsSync)
|
||||
.map(loader => require(loader).default);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user