Skip to content
Snippets Groups Projects
Commit 56e1a2c7 authored by Alf Eaton's avatar Alf Eaton
Browse files

Use the styleguide webpack config

parent 681a4919
No related branches found
No related tags found
No related merge requests found
process.env.BABEL_ENV = 'production'
process.env.NODE_ENV = 'production'
const webpackConfig = require('xpub-styleguide/src/webpack-config')
const path = require('path')
// const nodeExternals = require('webpack-node-externals')
const ExtractTextPlugin = require('extract-text-webpack-plugin')
const include = [
path.join(__dirname, 'src'),
/pubsweet-[^/]+\/src/,
/xpub-[^/]+\/src/,
]
module.exports = {
entry: './src/index.js',
output: {
filename: 'index.js',
path: path.join(__dirname, 'dist'),
library: 'WaxEditor',
libraryTarget: 'commonjs2'
},
devtool: 'cheap-module-source-map',
// externals: [nodeExternals({
// whitelist: [/\.(?!js$).{1,5}$/i]
// })],
resolve: {
symlinks: false, // needed to prevent babel looking in other folders
extensions: ['.js', '.jsx'], // needed because pubsweet-component-wax uses jsx
},
module: {
rules: [
{
oneOf: [
{
test: /\.jsx?$/,
include,
loader: 'babel-loader',
options: {
presets: [
['env', { modules: false }],
'react',
'stage-2'
],
}
},
// CSS modules
{
test: /\.local\.css$/,
include,
use: [
'style-loader',
{
loader: 'css-loader',
options: {
modules: true,
localIdentName: '[name]_[local]-[hash:base64:8]',
}
}
],
},
// SCSS modules
{
test: /\.local\.scss$/,
include,
use: [
'style-loader',
{
loader: 'css-loader',
options: {
modules: true,
localIdentName: '[name]_[local]-[hash:base64:8]',
importLoaders: 1,
}
},
'sass-loader'
],
},
// CSS
{
test: /\.css$/,
use: ExtractTextPlugin.extract({
fallback: 'style-loader',
use: 'css-loader'
})
},
// SCSS
{
test: /\.scss$/,
use: ExtractTextPlugin.extract({
fallback: 'style-loader',
use: [
'css-loader',
'sass-loader'
],
}),
},
// other files
{
exclude: [/\.jsx?$/, /\.html$/, /\.json$/],
loader: 'file-loader',
options: {
name: 'static/[name].[hash:8].[ext]',
}
}
]
}
]
},
plugins: [
new ExtractTextPlugin('styles.css'),
]
}
module.exports = webpackConfig(__dirname)
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment