Remove catw

This commit is contained in:
fflorent
2024-04-01 14:50:02 +02:00
committed by jordigh
parent 920eb09b3b
commit 14061fd5ac
4 changed files with 17 additions and 3 deletions

View File

@@ -19,4 +19,3 @@ buildtools/update_type_info.sh app
webpack --config $WEBPACK_CONFIG --mode production
webpack --config buildtools/webpack.check.js --mode production
webpack --config buildtools/webpack.api.config.js --mode production
cat app/client/*.css app/client/*/*.css > static/bundle.css

View File

@@ -1,7 +1,11 @@
const fs = require('fs');
const MomentLocalesPlugin = require('moment-locales-webpack-plugin');
const MergeIntoSingleFilePlugin = require('webpack-merge-and-include-globally');
const { ProvidePlugin } = require('webpack');
const path = require('path');
const glob = require('glob');
const cssFiles = glob.sync('app/client/**/*.css');
// Get path to top-level node_modules if in a yarn workspace.
// Otherwise node_modules one level up won't get resolved.
@@ -17,6 +21,7 @@ module.exports = {
boot: "app/client/boot",
billing: "app/client/billingMain",
form: "app/client/formMain",
css: cssFiles,
// Include client test harness if it is present (it won't be in
// docker image).
...(fs.existsSync("test/client-harness/client.js") ? {
@@ -74,6 +79,10 @@ module.exports = {
{ test: /\.js$/,
use: ["source-map-loader"],
enforce: "pre"
},
{
test: /\.css$/,
type: 'asset/resource'
}
]
},
@@ -83,6 +92,12 @@ module.exports = {
process: 'process',
Buffer: ['buffer', 'Buffer']
}),
new MergeIntoSingleFilePlugin({
files: {
"bundle.css": cssFiles
},
chunks: "css"
}),
// To strip all locales except “en”
new MomentLocalesPlugin()
],