mirror of
https://github.com/colymba/GridFieldBulkEditingTools.git
synced 2024-10-22 11:05:57 +02:00
de2d3234f4
Now using the SilverStripe webpack-config which lets us extend the CMS front end components. Allowed to write a quick hack fixing the add-from-file for bulk uploader
64 lines
1.7 KiB
JavaScript
64 lines
1.7 KiB
JavaScript
const Path = require('path');
|
|
const webpack = require('webpack');
|
|
// 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 = {
|
|
// the root path, where your webpack.config.js is located.
|
|
ROOT: Path.resolve(),
|
|
// your node_modules folder name, or full path
|
|
MODULES: 'node_modules',
|
|
// relative path from your css files to your other files, such as images and fonts
|
|
FILES_PATH: '../',
|
|
// thirdparty folder containing copies of packages which wouldn't be available on NPM
|
|
THIRDPARTY: 'thirdparty',
|
|
// the root path to your javascript source files
|
|
SRC: Path.resolve('client/src'),
|
|
DIST: Path.resolve('client/dist'),
|
|
};
|
|
|
|
const config = [
|
|
{
|
|
name: 'js',
|
|
entry: [
|
|
`${PATHS.SRC}/js/manager.js`,
|
|
`${PATHS.SRC}/js/managerBulkEditingForm.js`,
|
|
`${PATHS.SRC}/js/uploader.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: [
|
|
`${PATHS.SRC}/styles/manager.scss`,
|
|
`${PATHS.SRC}/styles/managerBulkEditingForm.scss`,
|
|
`${PATHS.SRC}/styles/uploader.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; |