mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 07:31:19 +08:00
51 lines
1.6 KiB
JavaScript
51 lines
1.6 KiB
JavaScript
'use strict';
|
|
|
|
var path = require('path');
|
|
var webpack = require('webpack');
|
|
var fs = require('fs');
|
|
|
|
var config = {
|
|
devtool: 'cheap-module-eval-source-map',
|
|
entry: ['stack-source-map/register', 'webpack-hot-middleware/client', path.resolve(__dirname, '../client/init_ui')],
|
|
output: {
|
|
path: path.join(__dirname, 'dist'),
|
|
filename: 'bundle.js',
|
|
publicPath: '/static/'
|
|
},
|
|
plugins: [new webpack.optimize.OccurenceOrderPlugin(), new webpack.HotModuleReplacementPlugin()],
|
|
module: {
|
|
loaders: [{
|
|
test: /\.js$/,
|
|
loader: 'babel',
|
|
query: { presets: ['react', 'es2015', 'stage-2'] },
|
|
exclude: [path.resolve('./node_modules'), path.resolve(__dirname, 'node_modules')],
|
|
include: [path.resolve('./'), __dirname]
|
|
}]
|
|
}
|
|
};
|
|
|
|
// add config path to the entry
|
|
var configDir = path.resolve('./.storybook');
|
|
var storybookConfigPath = path.resolve(configDir, 'config.js');
|
|
if (!fs.existsSync(storybookConfigPath)) {
|
|
console.error('=> Create a storybook config file in ".storybook/config.js".\n');
|
|
process.exit(0);
|
|
}
|
|
config.entry.push(storybookConfigPath);
|
|
|
|
// load custom webpack configurations
|
|
var customConfigPath = path.resolve(configDir, 'webpack.config.js');
|
|
if (fs.existsSync(customConfigPath)) {
|
|
var customConfig = require(customConfigPath);
|
|
if (customConfig.module.loaders) {
|
|
console.log("=> Loading custom webpack loaders.");
|
|
config.module.loaders = config.module.loaders.concat(customConfig.module.loaders);
|
|
}
|
|
|
|
if (customConfig.plugins) {
|
|
console.log(" => Loading custom webpack plugins.");
|
|
config.plugins = config.plugins.concat(customConfig.plugins);
|
|
}
|
|
}
|
|
|
|
module.exports = config; |