mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
Remove the cacheDirectory
option from babel config
In storyshots, we are running babel directly, not through webpack, so we can't use this option, which applies to `babel-loader`. See https://github.com/storybooks/storybook/blob/master/app/react/src/server/config/babel.js#L15 https://github.com/storybooks/storybook/issues/1254
This commit is contained in:
parent
bf6faea25e
commit
e1dfd2e117
@ -31,11 +31,14 @@ export default function testStorySnapshots(options = {}) {
|
|||||||
if (isStorybook) {
|
if (isStorybook) {
|
||||||
storybook = require.requireActual('@storybook/react');
|
storybook = require.requireActual('@storybook/react');
|
||||||
// eslint-disable-next-line
|
// eslint-disable-next-line
|
||||||
const loadBabelConfig = require('@storybook/react/dist/server/babel_config').default;
|
const loadBabelConfig = require('@storybook/react/dist/server/babel_config')
|
||||||
|
.default;
|
||||||
const configDirPath = path.resolve(options.configPath || '.storybook');
|
const configDirPath = path.resolve(options.configPath || '.storybook');
|
||||||
configPath = path.join(configDirPath, 'config.js');
|
configPath = path.join(configDirPath, 'config.js');
|
||||||
|
|
||||||
const babelConfig = loadBabelConfig(configDirPath);
|
const babelConfig = loadBabelConfig(configDirPath);
|
||||||
|
// We set this in the default babel config, but it is webpack-only
|
||||||
|
delete babelConfig.cacheDirectory;
|
||||||
const content = babel.transformFileSync(configPath, babelConfig).code;
|
const content = babel.transformFileSync(configPath, babelConfig).code;
|
||||||
const contextOpts = {
|
const contextOpts = {
|
||||||
filename: configPath,
|
filename: configPath,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user