@@ -9,7 +9,6 @@ const ESLintPlugin = require("eslint-webpack-plugin");
99const nodeExternals = require ( "webpack-node-externals" ) ;
1010const CopyWebpackPlugin = require ( "copy-webpack-plugin" ) ;
1111const { ESBuildMinifyPlugin } = require ( "esbuild-loader" ) ;
12- const ConcatTextPlugin = require ( "concat-text-webpack-plugin" ) ;
1312const { BundleAnalyzerPlugin } = require ( "webpack-bundle-analyzer" ) ;
1413const TsconfigPathsPlugin = require ( "tsconfig-paths-webpack-plugin" ) ;
1514const PermissionsOutputPlugin = require ( "webpack-permissions-plugin" ) ;
@@ -33,7 +32,6 @@ const servicePath = config.servicePath;
3332const nodeVersion = config . nodeVersion ;
3433const externals = config . options . externals ;
3534const copyFiles = config . options . copyFiles ;
36- const concatText = config . options . concatText ;
3735const experiments = config . options . experiments ;
3836const esbuildNodeVersion = "node" + nodeVersion ;
3937const forceExclude = config . options . forceExclude ;
@@ -375,18 +373,6 @@ function plugins() {
375373 plugins . push ( new PermissionsOutputPlugin ( { buildFiles } ) ) ;
376374 }
377375
378- if ( concatText ) {
379- const concatTextConfig = { } ;
380-
381- concatText . map ( function ( data ) {
382- concatTextConfig . files = data . files || null ;
383- concatTextConfig . name = data . name || null ;
384- concatTextConfig . outputPath = data . outputPath || null ;
385- } ) ;
386-
387- plugins . push ( new ConcatTextPlugin ( concatTextConfig ) ) ;
388- }
389-
390376 // Ignore all locale files of moment.js
391377 plugins . push (
392378 new webpack . IgnorePlugin ( {
0 commit comments