3f6ad0d950
- Bump postcss. - Remove postcss-clean. It's incompatible with newer versions and apparently unnecesary. - Finally got CSS source maps to work again
123 lines
3.6 KiB
JavaScript
123 lines
3.6 KiB
JavaScript
/* global __dirname, module, process */
|
|
const TerserPlugin = require("terser-webpack-plugin");
|
|
const path = require('path');
|
|
|
|
let bootstrap_ignore_modules = ['carousel', 'scrollspy', 'tooltip', 'toast'];
|
|
|
|
|
|
const BOOTSTRAP_IGNORE_MODULES = (process.env.BOOTSTRAP_IGNORE_MODULES || '').replace(/ /g, '').trim();
|
|
if (BOOTSTRAP_IGNORE_MODULES.length > 0) {
|
|
bootstrap_ignore_modules = bootstrap_ignore_modules.concat(BOOTSTRAP_IGNORE_MODULES.split(','));
|
|
}
|
|
|
|
module.exports = {
|
|
output: {
|
|
path: path.resolve(__dirname, '../dist'), // Output path for generated bundles
|
|
chunkFilename: '[name].js'
|
|
},
|
|
devtool: "source-map",
|
|
optimization: {
|
|
minimize: true,
|
|
minimizer: [
|
|
new TerserPlugin({
|
|
include: /\.min\.js$/
|
|
})
|
|
],
|
|
},
|
|
externals: [{
|
|
"window": "window"
|
|
}],
|
|
watchOptions: {
|
|
ignored: /dist/,
|
|
},
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /LC_MESSAGES[\\/]converse.po$/,
|
|
type: "json",
|
|
use: [
|
|
{
|
|
loader: 'po-loader',
|
|
options: {
|
|
'format': 'jed',
|
|
'domain': 'converse'
|
|
}
|
|
}
|
|
]
|
|
}, {
|
|
test: /webfonts[\\/].*\.(woff(2)?|ttf|eot|truetype|svg)(\?v=\d+\.\d+\.\d+)?$/,
|
|
type: 'asset/resource',
|
|
generator: {
|
|
filename: '[name][ext]',
|
|
publicPath: 'webfonts/',
|
|
outputPath: 'webfonts/'
|
|
}
|
|
}, {
|
|
test: /\.scss$/,
|
|
use: [
|
|
'style-loader',
|
|
{
|
|
loader: 'css-loader',
|
|
options: {
|
|
url: false,
|
|
sourceMap: true
|
|
|
|
}
|
|
},
|
|
{
|
|
loader: "postcss-loader",
|
|
options: { sourceMap: true }
|
|
},
|
|
{
|
|
loader: 'sass-loader',
|
|
options: {
|
|
sassOptions: {
|
|
includePaths: [
|
|
path.resolve(__dirname, '../node_modules/'),
|
|
path.resolve(__dirname, '../src/')
|
|
]
|
|
},
|
|
sourceMap: true
|
|
}
|
|
},
|
|
]
|
|
}, {
|
|
test: /\.js$/,
|
|
include: [
|
|
/src/,
|
|
/node_modules\/mergebounce/,
|
|
/node_modules\/lit-html/,
|
|
/node_modules\/strophe/,
|
|
/node_modules\/pluggable/,
|
|
/node_modules\/@converse/,
|
|
],
|
|
use: {
|
|
loader: 'babel-loader'
|
|
}
|
|
}, {
|
|
test: /bootstrap\.native/,
|
|
use: {
|
|
loader: 'bootstrap.native-loader',
|
|
options: {
|
|
bs_version: 4,
|
|
ignore: bootstrap_ignore_modules
|
|
}
|
|
}
|
|
}],
|
|
},
|
|
resolve: {
|
|
extensions: ['.js'],
|
|
modules: [
|
|
'node_modules',
|
|
path.resolve(__dirname, "../src")
|
|
],
|
|
alias: {
|
|
"IPv6": path.resolve(__dirname, "../node_modules/urijs/src/IPv6"),
|
|
"SecondLevelDomains": path.resolve(__dirname, "../node_modules/urijs/src/SecondLevelDomains"),
|
|
"punycode": path.resolve(__dirname, "../node_modules/urijs/src/punycode"),
|
|
"./shims": path.resolve(__dirname, "../src/strophe-shims.js"),
|
|
}
|
|
}
|
|
|
|
}
|