mirror of
https://github.com/silverstripe/silverstripe-contentreview
synced 2024-10-22 17:05:47 +02:00
55 lines
1.2 KiB
JavaScript
55 lines
1.2 KiB
JavaScript
const Path = require('path');
|
|
// Import the core config
|
|
const webpackConfig = require('@silverstripe/webpack-config');
|
|
const {
|
|
resolveJS,
|
|
externalJS,
|
|
moduleJS,
|
|
pluginJS,
|
|
moduleCSS,
|
|
pluginCSS,
|
|
} = webpackConfig;
|
|
|
|
const ENV = process.env.NODE_ENV;
|
|
const PATHS = {
|
|
MODULES: 'node_modules',
|
|
FILES_PATH: '../',
|
|
ROOT: Path.resolve(),
|
|
SRC: Path.resolve('client/src'),
|
|
DIST: Path.resolve('client/dist'),
|
|
THIRDPARTY: Path.resolve('thirdparty'),
|
|
};
|
|
|
|
const config = [
|
|
{
|
|
name: 'js',
|
|
entry: {
|
|
contentreview: `${PATHS.SRC}/bundles/bundle.js`,
|
|
},
|
|
output: {
|
|
path: PATHS.DIST,
|
|
filename: 'js/[name].js',
|
|
},
|
|
devtool: (ENV !== 'production') ? 'source-map' : '',
|
|
resolve: resolveJS(ENV, PATHS),
|
|
externals: externalJS(ENV, PATHS),
|
|
module: moduleJS(ENV, PATHS),
|
|
plugins: pluginJS(ENV, PATHS),
|
|
},
|
|
{
|
|
name: 'css',
|
|
entry: {
|
|
contentreview: `${PATHS.SRC}/styles/bundle.scss`,
|
|
},
|
|
output: {
|
|
path: PATHS.DIST,
|
|
filename: 'styles/[name].css'
|
|
},
|
|
devtool: (ENV !== 'production') ? 'source-map' : '',
|
|
module: moduleCSS(ENV, PATHS),
|
|
plugins: pluginCSS(ENV, PATHS),
|
|
},
|
|
];
|
|
|
|
module.exports = config;
|