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:
Tom Coleman 2017-06-23 14:40:29 +10:00
parent bf6faea25e
commit e1dfd2e117

View File

@ -31,11 +31,14 @@ export default function testStorySnapshots(options = {}) {
if (isStorybook) {
storybook = require.requireActual('@storybook/react');
// 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');
configPath = path.join(configDirPath, 'config.js');
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 contextOpts = {
filename: configPath,