mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 08:01:20 +08:00
Merge pull request #3785 from Ailrun/master
Support other type of webpack configs
This commit is contained in:
commit
bc2116ca2c
@ -46,6 +46,7 @@
|
||||
"find-cache-dir": "^1.0.0",
|
||||
"global": "^4.3.2",
|
||||
"html-webpack-plugin": "^3.2.0",
|
||||
"interpret": "^1.1.0",
|
||||
"json5": "^1.0.1",
|
||||
"postcss-flexbugs-fixes": "^3.3.1",
|
||||
"postcss-loader": "^2.1.5",
|
||||
|
@ -1,11 +1,9 @@
|
||||
/* eslint-disable global-require, import/no-dynamic-require */
|
||||
import fs from 'fs';
|
||||
import path from 'path';
|
||||
import findCacheDir from 'find-cache-dir';
|
||||
import { logger } from '@storybook/node-logger';
|
||||
import { createDefaultWebpackConfig } from './config/defaults/webpack.config';
|
||||
import devBabelConfig from './config/babel';
|
||||
import loadBabelConfig from './babel_config';
|
||||
import loadCustomConfig from './loadCustomWebpackConfig';
|
||||
|
||||
const noopWrapper = config => config;
|
||||
|
||||
@ -86,15 +84,13 @@ export default options => {
|
||||
|
||||
// Check whether user has a custom webpack config file and
|
||||
// return the (extended) base configuration if it's not available.
|
||||
const customConfigPath = path.resolve(configDir, 'webpack.config.js');
|
||||
const customConfig = loadCustomConfig(configDir);
|
||||
|
||||
if (!fs.existsSync(customConfigPath)) {
|
||||
if (customConfig === null) {
|
||||
informAboutCustomConfig(defaultConfigName);
|
||||
return defaultConfig;
|
||||
}
|
||||
|
||||
const customConfig = require(customConfigPath);
|
||||
|
||||
if (typeof customConfig === 'function') {
|
||||
logger.info('=> Loading custom webpack config (full-control mode).');
|
||||
return customConfig(wrapBasicConfig(config), configType, defaultConfig);
|
||||
|
86
lib/core/src/server/loadCustomWebpackConfig.js
Normal file
86
lib/core/src/server/loadCustomWebpackConfig.js
Normal file
@ -0,0 +1,86 @@
|
||||
/* eslint-disable global-require, import/no-dynamic-require */
|
||||
import fs from 'fs';
|
||||
import path from 'path';
|
||||
import interpret from 'interpret';
|
||||
import { logger } from '@storybook/node-logger';
|
||||
|
||||
// Copied and modified from
|
||||
// https://github.com/webpack/webpack-cli/blob/ca504de8c7c0ea66278021b72fa6a953e3ffa43c/bin/convert-argv.js#L102-L119
|
||||
function registerCompiler(moduleDescriptor) {
|
||||
if (!moduleDescriptor) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (typeof moduleDescriptor === 'string') {
|
||||
require(moduleDescriptor);
|
||||
return 1;
|
||||
}
|
||||
|
||||
if (!Array.isArray(moduleDescriptor)) {
|
||||
moduleDescriptor.register(require(moduleDescriptor.module));
|
||||
return 1;
|
||||
}
|
||||
|
||||
let registered = 0;
|
||||
|
||||
for (let i = 0; i < moduleDescriptor.length; i += 1) {
|
||||
try {
|
||||
registered += registerCompiler(moduleDescriptor[i]);
|
||||
break;
|
||||
} catch (e) {
|
||||
// do nothing
|
||||
}
|
||||
}
|
||||
|
||||
return registered;
|
||||
}
|
||||
|
||||
// Copied and modified from
|
||||
// https://github.com/webpack/webpack-cli/blob/ca504de8c7c0ea66278021b72fa6a953e3ffa43c/bin/convert-argv.js#L121-L137
|
||||
function requireConfig(configPath) {
|
||||
const config = require(configPath);
|
||||
|
||||
const isES6DefaultExported =
|
||||
typeof config === 'object' && config !== null && typeof config.default !== 'undefined';
|
||||
|
||||
return isES6DefaultExported ? config.default : config;
|
||||
}
|
||||
|
||||
// Copied and modified from
|
||||
// https://github.com/webpack/webpack-cli/blob/ca504de8c7c0ea66278021b72fa6a953e3ffa43c/bin/convert-argv.js#L45-L143
|
||||
export default configDir => {
|
||||
const extensions = Object.keys(interpret.extensions).sort((a, b) => {
|
||||
if (a === '.js') {
|
||||
return -1;
|
||||
}
|
||||
if (b === '.js') {
|
||||
return 1;
|
||||
}
|
||||
return a.length - b.length;
|
||||
});
|
||||
const customConfigCandidates = ['webpack.config', 'webpackfile']
|
||||
.map(filename =>
|
||||
extensions.map(ext => ({
|
||||
path: path.resolve(configDir, filename + ext),
|
||||
ext,
|
||||
}))
|
||||
)
|
||||
.reduce((a, i) => a.concat(i), []);
|
||||
|
||||
for (let i = 0; i < customConfigCandidates.length; i += 1) {
|
||||
const customConfigPath = customConfigCandidates[i].path;
|
||||
if (fs.existsSync(customConfigPath)) {
|
||||
if (registerCompiler(interpret.extensions[customConfigCandidates[i].ext]) === 0) {
|
||||
logger.warn(`=> Custom configuration file ${customConfigPath} is detected`);
|
||||
logger.warn(` but impossible to import loader for ${customConfigCandidates[i].ext}`);
|
||||
}
|
||||
try {
|
||||
return requireConfig(customConfigPath);
|
||||
} catch (e) {
|
||||
// do nothing
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return null;
|
||||
};
|
Loading…
x
Reference in New Issue
Block a user