mirror of
https://github.com/silverstripe/silverstripe-userforms.git
synced 2024-10-22 17:05:42 +02:00
7f208ee927
Mostly to do with translations, however the errors meant the front end forms largely didn't work at all. Some of this was to do with the scoping of `this` in es6 arrow functions, compared to the legacy code with entwine that uses the fuller `function` definition. Reinstate missing dependency for translations to function too.
71 lines
1.6 KiB
JavaScript
71 lines
1.6 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-frontend',
|
|
entry: {
|
|
userforms: `${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: 'js-cms',
|
|
entry: {
|
|
'userforms-cms': `${PATHS.SRC}/bundles/bundle-cms.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: {
|
|
userforms: `${PATHS.SRC}/styles/bundle.scss`,
|
|
'userforms-cms': `${PATHS.SRC}/styles/bundle-cms.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;
|