-
-
Save nufaylr/0afbbcfcfd08c20cbd23b693844b0a86 to your computer and use it in GitHub Desktop.
Storybook config
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const webpack = require('webpack') | |
const path = require('path') | |
const cssnano = require('cssnano') | |
const BASE_PATH = '..' | |
const resolvePath = subPath => path.resolve(__dirname, `${BASE_PATH}/${subPath}`) | |
const env = process.env.NODE_ENV || 'development' | |
/* eslint-disable */ | |
const __DEV__ = env === 'development' | |
const __PROD__ = env === 'production' | |
/* eslint-enable */ | |
if (!(__DEV__ || __PROD__)) { | |
throw new Error(`Unknown env: ${env}.`) | |
} | |
console.log(`Loading config for ${env}`) | |
const apiUrl = __DEV__ ? 'http://localhost:3000' : 'https://staging.api.medspoke.tech' | |
const config = { | |
sourceMaps: __DEV__, | |
optimize: __PROD__, | |
paths: { | |
build: resolvePath('build'), | |
src: resolvePath('src'), | |
styles: resolvePath('src/style'), | |
common_module: resolvePath('common_modules'), | |
images: resolvePath('src/images'), | |
}, | |
globals: { | |
'process.env': { | |
NODE_ENV: JSON.stringify(env), | |
}, | |
NODE_ENV: env, | |
__DEV__, | |
__PROD__, | |
__API_ROOT__: JSON.stringify(apiUrl), | |
}, | |
} | |
// ------------------------------------ | |
// Environment | |
// ------------------------------------ | |
const loaders = [ | |
// ------------------------------------ | |
// JS / JSX / Json | |
// ------------------------------------ | |
{ | |
test: /\.jsx?$/, | |
exclude: /node_modules/, | |
include: [config.paths.src, config.paths.common_module], | |
loader: 'babel-loader', | |
query: { | |
cacheDirectory: true, | |
plugins: ['transform-runtime'], | |
presets: ['es2015', 'react', 'stage-1'], | |
}, | |
}, | |
{ | |
test: /\.json$/, | |
loader: 'json', | |
}, | |
] | |
const sassLoader = `sass-loader${config.sourceMaps ? '?sourceMap' : ''}` | |
const baseCSSLoader = `css-loader?${config.sourceMaps ? 'sourceMap' : ''}&-minimize` | |
const cssModulesLoader = [ | |
baseCSSLoader, | |
'modules', | |
'importLoaders=1', | |
'localIdentName=[name]__[local]___[hash:base64:5]', | |
].join('&') | |
// ------------------------------------ | |
// Styles that should be treated at CSS modules | |
// ------------------------------------ | |
loaders.push({ | |
test: /\.scss$/, | |
exclude: config.paths.styles, | |
loaders: ['style-loader', cssModulesLoader, 'postcss-loader', sassLoader], | |
}) | |
// ------------------------------------ | |
// Non CSS Module styles | |
// ------------------------------------ | |
loaders.push({ | |
test: /\.scss$/, | |
include: config.paths.styles, | |
loaders: ['style-loader', baseCSSLoader, 'postcss-loader', sassLoader], | |
}) | |
// ------------------------------------ | |
// File Loaders | |
// ------------------------------------ | |
loaders.push( | |
{ | |
test: /\.woff(\?.*)?$/, | |
loader: 'url-loader?name=public/fonts/[name].[ext]&limit=100000&mimetype=application/font-woff', | |
}, | |
{ | |
test: /\.woff2(\?.*)?$/, | |
loader: 'url-loader?name=public/fonts/[name].[ext]&limit=100000&mimetype=application/font-woff2', | |
}, | |
{ | |
test: /\.otf(\?.*)?$/, | |
loader: 'file-loader?name=public/fonts/[name].[ext]&limit=10000&mimetype=font/opentype', | |
}, | |
{ | |
test: /\.ttf(\?.*)?$/, | |
loader: 'url-loader?name=public/fonts/[name].[ext]&limit=10000&mimetype=application/octet-stream', | |
}, | |
{ | |
test: /\.eot(\?.*)?$/, | |
loader: 'file-loader?name=public/fonts/[name].[ext]', | |
}, | |
{ | |
test: /\.svg(\?.*)?$/, | |
loader: 'url-loader?name=public/fonts/[name].[ext]&limit=10000&mimetype=image/svg+xml', | |
}, | |
{ | |
test: /\.(png|jpg)$/, | |
loader: 'url-loader?name=public/images/[name].[hash].[ext]&limit=8192', | |
include: config.paths.images, | |
} | |
) | |
// ------------------------------------ | |
// Plugins | |
// ------------------------------------ | |
const plugins = [ | |
new webpack.DefinePlugin(config.globals), | |
] | |
if (config.optimize) { | |
plugins.push( | |
new webpack.optimize.OccurrenceOrderPlugin(), | |
new webpack.optimize.DedupePlugin(), | |
new webpack.optimize.UglifyJsPlugin({ | |
compress: { | |
unused: false, | |
dead_code: false, | |
warnings: false, | |
}, | |
}) | |
) | |
} | |
// ------------------------------------ | |
// Final Config | |
// ------------------------------------ | |
module.exports = { | |
context: config.paths.src, | |
resolve: { | |
root: [config.paths.src], | |
extensions: ['', '.js', '.jsx', '.json'], | |
modulesDirectories: [ | |
'node_modules', | |
'common_modules', | |
], | |
}, | |
module: { loaders }, | |
plugins, | |
// ------------------------------------ | |
// Loader Options | |
// ------------------------------------ | |
postcss: [ | |
cssnano({ | |
autoprefixer: { | |
add: true, | |
remove: true, | |
browsers: ['last 2 versions'], | |
}, | |
discardComments: { | |
removeAll: !config.sourceMaps, // removing comments breaks the inline source maps | |
}, | |
discardUnused: true, | |
mergeIdents: false, | |
reduceIdents: false, | |
safe: true, | |
sourcemap: config.sourceMaps, | |
}), | |
], | |
sassLoader: { | |
includePaths: [config.paths.styles], | |
}, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment