@plaudit/webpack-extensions 2.49.0 → 2.50.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,5 +1,5 @@
1
1
  import { type Compiler, type WebpackPluginInstance } from "webpack";
2
- export default class AdditionalDependencyInjectorPlugin implements WebpackPluginInstance {
2
+ export declare class AdditionalDependencyInjectorPlugin implements WebpackPluginInstance {
3
3
  private readonly entrypointAdditionalDependencies;
4
4
  private readonly processingModules;
5
5
  private readonly addExternalizedDep;
@@ -3,6 +3,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
3
3
  return (mod && mod.__esModule) ? mod : { "default": mod };
4
4
  };
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.AdditionalDependencyInjectorPlugin = void 0;
6
7
  const node_fs_1 = __importDefault(require("node:fs"));
7
8
  const webpack_1 = require("webpack");
8
9
  class AdditionalDependencyInjectorPlugin {
@@ -54,4 +55,4 @@ class AdditionalDependencyInjectorPlugin {
54
55
  });
55
56
  }
56
57
  }
57
- exports.default = AdditionalDependencyInjectorPlugin;
58
+ exports.AdditionalDependencyInjectorPlugin = AdditionalDependencyInjectorPlugin;
@@ -1,5 +1,5 @@
1
1
  import { Compilation, type Compiler, type WebpackPluginInstance } from "webpack";
2
- export default class BlockJSONManagingPlugin implements WebpackPluginInstance {
2
+ export declare class BlockJSONManagingPlugin implements WebpackPluginInstance {
3
3
  private readonly standaloneBlocks;
4
4
  private readonly processingModules;
5
5
  static readonly mappableModuleKeys: readonly ["viewScriptModule", "scriptModule"];
@@ -3,6 +3,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
3
3
  return (mod && mod.__esModule) ? mod : { "default": mod };
4
4
  };
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.BlockJSONManagingPlugin = void 0;
6
7
  const node_crypto_1 = __importDefault(require("node:crypto"));
7
8
  const node_fs_1 = __importDefault(require("node:fs"));
8
9
  const node_path_1 = __importDefault(require("node:path"));
@@ -587,4 +588,4 @@ class BlockJSONManagingPlugin {
587
588
  return [...files];
588
589
  }
589
590
  }
590
- exports.default = BlockJSONManagingPlugin;
591
+ exports.BlockJSONManagingPlugin = BlockJSONManagingPlugin;
@@ -1,5 +1,5 @@
1
1
  import { type Compiler, type WebpackPluginInstance } from "webpack";
2
- export default class ExtensionsConfigFileGeneratorPlugin implements WebpackPluginInstance {
2
+ export declare class ExtensionsConfigFileGeneratorPlugin implements WebpackPluginInstance {
3
3
  private readonly extensionsPath;
4
4
  constructor(extensionsPath: string);
5
5
  apply(compiler: Compiler): void;
@@ -3,6 +3,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
3
3
  return (mod && mod.__esModule) ? mod : { "default": mod };
4
4
  };
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.ExtensionsConfigFileGeneratorPlugin = void 0;
6
7
  const promises_1 = __importDefault(require("node:fs/promises"));
7
8
  const node_path_1 = __importDefault(require("node:path"));
8
9
  const webpack_1 = require("webpack");
@@ -48,4 +49,4 @@ class ExtensionsConfigFileGeneratorPlugin {
48
49
  });
49
50
  }
50
51
  }
51
- exports.default = ExtensionsConfigFileGeneratorPlugin;
52
+ exports.ExtensionsConfigFileGeneratorPlugin = ExtensionsConfigFileGeneratorPlugin;
@@ -1,4 +1,4 @@
1
1
  import type { Compiler, WebpackPluginInstance } from "webpack";
2
- export default class MiniCSSExtractPluginErrorCleaner implements WebpackPluginInstance {
2
+ export declare class MiniCSSExtractPluginErrorCleaner implements WebpackPluginInstance {
3
3
  apply(compiler: Compiler): void;
4
4
  }
@@ -1,5 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.MiniCSSExtractPluginErrorCleaner = void 0;
3
4
  class MiniCSSExtractPluginErrorCleaner {
4
5
  apply(compiler) {
5
6
  compiler.hooks.done.tap("CleanupMiniCssExtractPlugin", stats => {
@@ -11,4 +12,4 @@ class MiniCSSExtractPluginErrorCleaner {
11
12
  });
12
13
  }
13
14
  }
14
- exports.default = MiniCSSExtractPluginErrorCleaner;
15
+ exports.MiniCSSExtractPluginErrorCleaner = MiniCSSExtractPluginErrorCleaner;
@@ -0,0 +1,4 @@
1
+ import type { Compiler, WebpackPluginInstance } from "webpack";
2
+ export declare class PackageConfigSanityChecker implements WebpackPluginInstance {
3
+ apply(compiler: Compiler): void;
4
+ }
@@ -0,0 +1,30 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.PackageConfigSanityChecker = void 0;
7
+ const node_fs_1 = __importDefault(require("node:fs"));
8
+ const node_path_1 = __importDefault(require("node:path"));
9
+ class PackageConfigSanityChecker {
10
+ apply(compiler) {
11
+ compiler.hooks.thisCompilation.tap(this.constructor.name, compilation => {
12
+ const configs = [["postcss.config.js", true], ["babel-transform.js", false],
13
+ ...["babel.config", ".babelrc"].flatMap(prefix => [`${prefix}.json`, `${prefix}.js`]).map((filename) => [filename, false])];
14
+ for (const [filename, blockable] of configs) {
15
+ const invalidFilePath = node_path_1.default.join(process.cwd(), filename);
16
+ if (node_fs_1.default.existsSync(invalidFilePath)) {
17
+ if (blockable) {
18
+ compilation.warnings.push(new Error(`The current project has a ${filename} file in its theme directory.`
19
+ + ` It will be ignored, but SHOULD be deleted before continuing.\nTo fix it, run: rm ${invalidFilePath}`));
20
+ }
21
+ else {
22
+ compilation.errors.push(new Error(`The current project has a ${filename} file in its theme directory.`
23
+ + ` It WILL cause issues and MUST be deleted before continuing.\nTo fix it, run: rm ${invalidFilePath}`));
24
+ }
25
+ }
26
+ }
27
+ });
28
+ }
29
+ }
30
+ exports.PackageConfigSanityChecker = PackageConfigSanityChecker;
@@ -1,6 +1,6 @@
1
1
  import { Compiler, WebpackPluginInstance } from "webpack";
2
2
  import { SharedCache } from "../shared";
3
- export default class SpecialAssetHandlingPlugin implements WebpackPluginInstance {
3
+ export declare class SpecialAssetHandlingPlugin implements WebpackPluginInstance {
4
4
  private readonly cache;
5
5
  constructor(cache: SharedCache);
6
6
  apply(compiler: Compiler): void;
@@ -3,6 +3,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
3
3
  return (mod && mod.__esModule) ? mod : { "default": mod };
4
4
  };
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.SpecialAssetHandlingPlugin = void 0;
6
7
  const node_path_1 = __importDefault(require("node:path"));
7
8
  const webpack_1 = require("webpack");
8
9
  class SpecialAssetHandlingPlugin {
@@ -103,4 +104,4 @@ class SpecialAssetHandlingPlugin {
103
104
  });
104
105
  }
105
106
  }
106
- exports.default = SpecialAssetHandlingPlugin;
107
+ exports.SpecialAssetHandlingPlugin = SpecialAssetHandlingPlugin;
@@ -1,5 +1,5 @@
1
1
  import type { Compiler, WebpackPluginInstance } from "webpack";
2
- export default class VariablesJSMonitorPlugin implements WebpackPluginInstance {
2
+ export declare class VariablesJSMonitorPlugin implements WebpackPluginInstance {
3
3
  private readonly variablesFilePath;
4
4
  constructor(variablesFilePath: string);
5
5
  apply(compiler: Compiler): void;
@@ -1,5 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.VariablesJSMonitorPlugin = void 0;
3
4
  class VariablesJSMonitorPlugin {
4
5
  variablesFilePath;
5
6
  constructor(variablesFilePath) {
@@ -13,4 +14,4 @@ class VariablesJSMonitorPlugin {
13
14
  });
14
15
  }
15
16
  }
16
- exports.default = VariablesJSMonitorPlugin;
17
+ exports.VariablesJSMonitorPlugin = VariablesJSMonitorPlugin;
@@ -1,6 +1,6 @@
1
1
  import { type Compiler, type WebpackPluginInstance } from "webpack";
2
- import BlockJSONManagingPlugin from "./BlockJSONManagingPlugin";
3
- export default class WPMLConfigBuilder implements WebpackPluginInstance {
2
+ import { BlockJSONManagingPlugin } from "./BlockJSONManagingPlugin";
3
+ export declare class WPMLConfigBuilderPlugin implements WebpackPluginInstance {
4
4
  private readonly blockJSONManagingPlugin;
5
5
  private static jsdomInstance?;
6
6
  private static domParser?;
@@ -3,11 +3,12 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
3
3
  return (mod && mod.__esModule) ? mod : { "default": mod };
4
4
  };
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.WPMLConfigBuilderPlugin = void 0;
6
7
  const promises_1 = __importDefault(require("node:fs/promises"));
7
8
  const jsdom_1 = require("jsdom");
8
9
  const webpack_1 = require("webpack");
9
10
  const xml_formatter_1 = __importDefault(require("xml-formatter"));
10
- class WPMLConfigBuilder {
11
+ class WPMLConfigBuilderPlugin {
11
12
  blockJSONManagingPlugin;
12
13
  static jsdomInstance;
13
14
  static domParser;
@@ -103,7 +104,7 @@ class WPMLConfigBuilder {
103
104
  mergedConfig.gutenbergBlocks[blockConfig.type] = blockConfig;
104
105
  }
105
106
  }
106
- const config = WPMLConfigBuilder.getDOMParser().parseFromString("<wpml-config></wpml-config>", "application/xml");
107
+ const config = WPMLConfigBuilderPlugin.getDOMParser().parseFromString("<wpml-config></wpml-config>", "application/xml");
107
108
  appendNamedElementsListToConfig("custom-fields", mergedConfig.customFields, config);
108
109
  appendNamedElementsListToConfig("custom-term-fields", mergedConfig.customTermFields, config);
109
110
  appendNamedElementsListToConfig("custom-types", mergedConfig.customTypes, config);
@@ -140,21 +141,21 @@ class WPMLConfigBuilder {
140
141
  appendNamedElementsListToConfig("shortcodes", mergedConfig.shortcodes, config);
141
142
  appendNamedElementsListToConfig("taxonomies", mergedConfig.taxonomies, config);
142
143
  this.blockJSONManagingPlugin.additionalMetadata.set("wpml-config", true);
143
- compilation["wpml-config.xml" in compilation.assets ? 'updateAsset' : 'emitAsset']("wpml-config.xml", new webpack_1.sources.RawSource(WPMLConfigBuilder.prettyPrintXML(config)));
144
+ compilation["wpml-config.xml" in compilation.assets ? 'updateAsset' : 'emitAsset']("wpml-config.xml", new webpack_1.sources.RawSource(WPMLConfigBuilderPlugin.prettyPrintXML(config)));
144
145
  });
145
146
  });
146
147
  }
147
148
  static getJSDOMInstance() {
148
- return WPMLConfigBuilder.jsdomInstance ?? (WPMLConfigBuilder.jsdomInstance = new jsdom_1.JSDOM("", { contentType: "text/html" }));
149
+ return WPMLConfigBuilderPlugin.jsdomInstance ?? (WPMLConfigBuilderPlugin.jsdomInstance = new jsdom_1.JSDOM("", { contentType: "text/html" }));
149
150
  }
150
151
  static getDOMParser() {
151
- return WPMLConfigBuilder.domParser ?? (WPMLConfigBuilder.domParser = new (WPMLConfigBuilder.getJSDOMInstance().window.DOMParser)());
152
+ return WPMLConfigBuilderPlugin.domParser ?? (WPMLConfigBuilderPlugin.domParser = new (WPMLConfigBuilderPlugin.getJSDOMInstance().window.DOMParser)());
152
153
  }
153
154
  static getXMLSerializer() {
154
- return WPMLConfigBuilder.xmlSerializer ?? (WPMLConfigBuilder.xmlSerializer = new (WPMLConfigBuilder.getJSDOMInstance().window.XMLSerializer)());
155
+ return WPMLConfigBuilderPlugin.xmlSerializer ?? (WPMLConfigBuilderPlugin.xmlSerializer = new (WPMLConfigBuilderPlugin.getJSDOMInstance().window.XMLSerializer)());
155
156
  }
156
157
  static prettyPrintXML(document) {
157
- return (0, xml_formatter_1.default)(WPMLConfigBuilder.getXMLSerializer().serializeToString(document), {
158
+ return (0, xml_formatter_1.default)(WPMLConfigBuilderPlugin.getXMLSerializer().serializeToString(document), {
158
159
  indentation: '\t',
159
160
  collapseContent: true,
160
161
  lineSeparator: '\n',
@@ -172,7 +173,7 @@ class WPMLConfigBuilder {
172
173
  if (existing?.raw === contents) {
173
174
  return [existing, file];
174
175
  }
175
- const wpmlConfig = WPMLConfigBuilder.getDOMParser().parseFromString(contents.replaceAll(/\s+xmlns=['"][^'"]+['"]/sig, ""), "application/xml");
176
+ const wpmlConfig = WPMLConfigBuilderPlugin.getDOMParser().parseFromString(contents.replaceAll(/\s+xmlns=['"][^'"]+['"]/sig, ""), "application/xml");
176
177
  const res = { raw: contents, customFields: {}, customTermFields: {}, customTypes: {}, gutenbergBlocks: {}, shortcodeList: new Set(), shortcodes: {}, taxonomies: {} };
177
178
  for (const element of wpmlConfig.documentElement.children) {
178
179
  switch (element.nodeName) {
@@ -243,7 +244,7 @@ class WPMLConfigBuilder {
243
244
  return [res, file];
244
245
  }
245
246
  }
246
- exports.default = WPMLConfigBuilder;
247
+ exports.WPMLConfigBuilderPlugin = WPMLConfigBuilderPlugin;
247
248
  function importStandardTranslateOptionMap(element, file, type, actionMap, compilation) {
248
249
  for (const child of element.children) {
249
250
  const field = child.textContent;
@@ -5,16 +5,17 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
5
5
  const node_fs_1 = __importDefault(require("node:fs"));
6
6
  const promises_1 = __importDefault(require("node:fs/promises"));
7
7
  const node_path_1 = __importDefault(require("node:path"));
8
- const AdditionalDependencyInjectorPlugin_1 = __importDefault(require("./wordpress-scripts-wrapper/AdditionalDependencyInjectorPlugin"));
9
- const BlockJSONManagingPlugin_1 = __importDefault(require("./wordpress-scripts-wrapper/BlockJSONManagingPlugin"));
10
- const dependency_extraction_webpack_plugin_config_builder_1 = require("./wordpress-scripts-wrapper/dependency-extraction-webpack-plugin-config-builder");
11
- const ExtensionsConfigFileGeneratorPlugin_1 = __importDefault(require("./wordpress-scripts-wrapper/ExtensionsConfigFileGeneratorPlugin"));
12
- const SpecialAssetHandlingPlugin_1 = __importDefault(require("./wordpress-scripts-wrapper/SpecialAssetHandlingPlugin"));
13
- const MiniCSSExtractPluginErrorCleaner_1 = __importDefault(require("./wordpress-scripts-wrapper/MiniCSSExtractPluginErrorCleaner"));
14
- const VariablesJSMonitorPlugin_1 = __importDefault(require("./wordpress-scripts-wrapper/VariablesJSMonitorPlugin"));
8
+ const AdditionalDependencyInjectorPlugin_1 = require("./wordpress-scripts-wrapper/AdditionalDependencyInjectorPlugin");
9
+ const BlockJSONManagingPlugin_1 = require("./wordpress-scripts-wrapper/BlockJSONManagingPlugin");
15
10
  const BrowserSyncPlugin_1 = require("./wordpress-scripts-wrapper/BrowserSyncPlugin");
11
+ const ExtensionsConfigFileGeneratorPlugin_1 = require("./wordpress-scripts-wrapper/ExtensionsConfigFileGeneratorPlugin");
12
+ const MiniCSSExtractPluginErrorCleaner_1 = require("./wordpress-scripts-wrapper/MiniCSSExtractPluginErrorCleaner");
13
+ const PackageConfigSanityChecker_1 = require("./wordpress-scripts-wrapper/PackageConfigSanityChecker");
14
+ const SpecialAssetHandlingPlugin_1 = require("./wordpress-scripts-wrapper/SpecialAssetHandlingPlugin");
15
+ const VariablesJSMonitorPlugin_1 = require("./wordpress-scripts-wrapper/VariablesJSMonitorPlugin");
16
+ const WPMLConfigBuilder_1 = require("./wordpress-scripts-wrapper/WPMLConfigBuilder");
16
17
  const static_configs_1 = require("./wordpress-scripts-wrapper/static-configs");
17
- const WPMLConfigBuilder_1 = __importDefault(require("./wordpress-scripts-wrapper/WPMLConfigBuilder"));
18
+ const dependency_extraction_webpack_plugin_config_builder_1 = require("./wordpress-scripts-wrapper/dependency-extraction-webpack-plugin-config-builder");
18
19
  const dependency_extraction_webpack_plugin_1 = __importDefault(require("@wordpress/dependency-extraction-webpack-plugin"));
19
20
  const copy_webpack_plugin_1 = __importDefault(require("copy-webpack-plugin"));
20
21
  const fork_ts_checker_webpack_plugin_1 = __importDefault(require("fork-ts-checker-webpack-plugin"));
@@ -22,13 +23,13 @@ const webpack_remove_empty_scripts_1 = __importDefault(require("webpack-remove-e
22
23
  function joinPossiblyAbsolutePaths(...paths) {
23
24
  return paths.reduce((res, p) => !res || node_path_1.default.isAbsolute(p) ? p : node_path_1.default.join(res, p), '') || '.';
24
25
  }
25
- function mapToRealEntrypoints(entrypoint, dir, mapper = (entrypoint) => entrypoint, lazyDependent) {
26
+ function mapToRealEntrypoints(entrypoint, dir, mapper = (entrypoint) => entrypoint, lazyDependent, associatedQuery) {
26
27
  return (Array.isArray(entrypoint) ? entrypoint : [entrypoint])
27
28
  .map(ep => joinPossiblyAbsolutePaths(dir, mapper(ep)))
28
29
  .filter(ep => node_fs_1.default.statSync(ep, { throwIfNoEntry: false })?.isFile())
29
30
  .map(ep => {
30
31
  const parsedEntrypoint = node_path_1.default.parse(ep);
31
- return [joinPossiblyAbsolutePaths(node_path_1.default.basename(parsedEntrypoint.dir), parsedEntrypoint.name), { import: ep, lazyDependent }];
32
+ return [joinPossiblyAbsolutePaths(node_path_1.default.basename(parsedEntrypoint.dir), parsedEntrypoint.name), { import: ep, lazyDependent, associatedQuery }];
32
33
  });
33
34
  }
34
35
  let isInThemeCache = undefined;
@@ -176,10 +177,10 @@ function injectPostcssConfigOverrides(rules, variables, postcssFunctionsConfig,
176
177
  }
177
178
  if (useItem.loader?.includes('postcss-loader')) {
178
179
  if (useItem.options["postcssOptions"]) {
179
- useItem.options["postcssOptions"] = { ...useItem.options["postcssOptions"], ...postcssConfig, sourceMap: true };
180
+ useItem.options["postcssOptions"] = { ...useItem.options["postcssOptions"], ...postcssConfig, sourceMap: true, config: false };
180
181
  }
181
182
  else {
182
- useItem.options["postcssOptions"] = { ...postcssConfig, sourceMap: true };
183
+ useItem.options["postcssOptions"] = { ...postcssConfig, sourceMap: true, config: false };
183
184
  }
184
185
  }
185
186
  }
@@ -296,6 +297,7 @@ function processIndividualWebpackConfig(config, webpackConfig, sources, sharedCa
296
297
  return plugin;
297
298
  })
298
299
  ?? [];
300
+ plugins.splice(0, 0, new PackageConfigSanityChecker_1.PackageConfigSanityChecker());
299
301
  if (process.env["NO_TS_CHECKER"] !== "true") {
300
302
  const include = (Array.isArray(srcRoot) ? srcRoot : [srcRoot])
301
303
  .filter(sr => node_path_1.default.extname(sr).length === 0 || scriptOrStyleTest(sr, scriptExtension) === "script")
@@ -326,33 +328,33 @@ function processIndividualWebpackConfig(config, webpackConfig, sources, sharedCa
326
328
  plugins.push(new webpack_remove_empty_scripts_1.default({
327
329
  stage: webpack_remove_empty_scripts_1.default.STAGE_AFTER_PROCESS_PLUGINS,
328
330
  extensions: ['css', 'scss', 'sass', 'less', 'styl', 'pcss']
329
- }), new MiniCSSExtractPluginErrorCleaner_1.default());
331
+ }), new MiniCSSExtractPluginErrorCleaner_1.MiniCSSExtractPluginErrorCleaner());
330
332
  if (config.useWebpackResourceFiltering) {
331
- plugins.push(new SpecialAssetHandlingPlugin_1.default(sharedCache));
333
+ plugins.push(new SpecialAssetHandlingPlugin_1.SpecialAssetHandlingPlugin(sharedCache));
332
334
  }
333
335
  if (variablesFilePath) {
334
- plugins.push(new VariablesJSMonitorPlugin_1.default(variablesFilePath));
336
+ plugins.push(new VariablesJSMonitorPlugin_1.VariablesJSMonitorPlugin(variablesFilePath));
335
337
  }
336
338
  const forBlocksDirectory = copyFiles && (typeof dest === 'string' || (dest.directoryLayout !== 'extensions' && dest.directoryLayout !== 'plain'));
337
339
  if (forBlocksDirectory) {
338
- const blockJSONManagingPlugin = new BlockJSONManagingPlugin_1.default(standaloneBlocks, processingModules);
340
+ const blockJSONManagingPlugin = new BlockJSONManagingPlugin_1.BlockJSONManagingPlugin(standaloneBlocks, processingModules);
339
341
  plugins.push(blockJSONManagingPlugin);
340
342
  if (config.processTranslationConfigs && srcIsDirectory && !processingModules) {
341
- plugins.push(new WPMLConfigBuilder_1.default(blockJSONManagingPlugin));
343
+ plugins.push(new WPMLConfigBuilder_1.WPMLConfigBuilderPlugin(blockJSONManagingPlugin));
342
344
  }
343
345
  }
344
346
  const pluginIndex = plugins.findIndex(plugin => plugin instanceof dependency_extraction_webpack_plugin_1.default);
345
347
  if (pluginIndex === -1) {
346
- console.error("Cannot apply externals when they have been disabled via CLI flag. This will greatly increase bundle size and will likely cause the build to file");
348
+ console.error("Cannot apply externals when they have been disabled via CLI flag. This will greatly increase bundle size and will likely cause the build to fail");
347
349
  }
348
350
  else {
349
351
  const localAssumeGlobalizedPlauditLibraries = (typeof dest !== 'string' ? dest.assumeGlobalizedPlauditLibraries : undefined) ?? assumeGlobalizedPlauditLibraries;
350
352
  const builtDependencyExtractionWebpackPlugin = (0, dependency_extraction_webpack_plugin_config_builder_1.makeDependencyExtractionPlugin)(externals, localAssumeGlobalizedPlauditLibraries, combineAssetMetadata && !processingModules && forBlocksDirectory, typeof dest !== 'string' ? dest.externalize : undefined);
351
353
  plugins[pluginIndex] = builtDependencyExtractionWebpackPlugin.instance;
352
- plugins.push(new AdditionalDependencyInjectorPlugin_1.default(typeof dest !== 'string' && dest.additionalDependencies ? dest.additionalDependencies : [], processingModules, builtDependencyExtractionWebpackPlugin.addExternalizedDep));
354
+ plugins.push(new AdditionalDependencyInjectorPlugin_1.AdditionalDependencyInjectorPlugin(typeof dest !== 'string' && dest.additionalDependencies ? dest.additionalDependencies : [], processingModules, builtDependencyExtractionWebpackPlugin.addExternalizedDep));
353
355
  }
354
356
  if (srcIsDirectory && (typeof dest !== 'string' && dest.directoryLayout === 'extensions')) {
355
- plugins.push(new ExtensionsConfigFileGeneratorPlugin_1.default(srcRoot));
357
+ plugins.push(new ExtensionsConfigFileGeneratorPlugin_1.ExtensionsConfigFileGeneratorPlugin(srcRoot));
356
358
  }
357
359
  if (process.argv.includes('--browser-sync') || process.env['BROWSER_SYNC'] === 'true') {
358
360
  plugins.push(new BrowserSyncPlugin_1.BrowserSyncPlugin());
@@ -393,7 +395,7 @@ function processIndividualWebpackConfig(config, webpackConfig, sources, sharedCa
393
395
  }
394
396
  }
395
397
  wpmlFiles.push(node_path_1.default.join(dir, 'block.json'));
396
- BlockJSONManagingPlugin_1.default.recordBlockJSONAssetSourceDir(blockJSONChunkName, dir);
398
+ BlockJSONManagingPlugin_1.BlockJSONManagingPlugin.recordBlockJSONAssetSourceDir(blockJSONChunkName, dir);
397
399
  }
398
400
  catch (e) {
399
401
  try {
@@ -440,7 +442,7 @@ function processIndividualWebpackConfig(config, webpackConfig, sources, sharedCa
440
442
  // This is used to allow for block.json dependencies to correctly account for name-deduplication
441
443
  for (const [key, entry] of Object.entries(currentEntry)) {
442
444
  if (typeof entry === 'object' && !Array.isArray(entry) && 'lazyDependent' in entry && typeof entry.lazyDependent === 'string') {
443
- BlockJSONManagingPlugin_1.default.recordRawDependency(entry.lazyDependent, key);
445
+ BlockJSONManagingPlugin_1.BlockJSONManagingPlugin.recordRawDependency(entry.lazyDependent, key);
444
446
  }
445
447
  }
446
448
  if (!processingModules) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plaudit/webpack-extensions",
3
- "version": "2.49.0",
3
+ "version": "2.50.0",
4
4
  "license": "UNLICENSED",
5
5
  "files": [
6
6
  "/build"
@@ -16,9 +16,9 @@
16
16
  }
17
17
  },
18
18
  "devDependencies": {
19
- "@plaudit/gutenberg-api-extensions": "^2.69.0",
19
+ "@plaudit/gutenberg-api-extensions": "^2.72.0",
20
20
  "@types/browser-sync-webpack-plugin": "^2.2.5",
21
- "@types/node": "^22.15.19",
21
+ "@types/node": "^22.15.29",
22
22
  "@types/postcss-functions": "^4.0.4",
23
23
  "@types/tapable": "^2.2.7",
24
24
  "@types/webpack": "^5.28.5",
@@ -34,8 +34,8 @@
34
34
  "@plaudit/postcss-silent-extend": "^3.0.0",
35
35
  "@plaudit/postcss-strip-units": "^3.0.0",
36
36
  "@plaudit/postcss-variables": "^1.1.0",
37
- "@wordpress/dependency-extraction-webpack-plugin": "^6.23.0",
38
- "@wordpress/scripts": "^30.16.0",
37
+ "@wordpress/dependency-extraction-webpack-plugin": "^6.24.0",
38
+ "@wordpress/scripts": "^30.17.0",
39
39
  "autoprefixer": "^10.4.21",
40
40
  "browser-sync": "^3.0.4",
41
41
  "clean-webpack-plugin": "^4.0.0",
@@ -45,7 +45,7 @@
45
45
  "fork-ts-checker-webpack-plugin": "^9.1.0",
46
46
  "http-proxy-middleware": "^3.0.5",
47
47
  "json2php": "^0.0.12",
48
- "postcss": "^8.5.3",
48
+ "postcss": "^8.5.4",
49
49
  "postcss-calc": "^9.0.1",
50
50
  "postcss-discard-comments": "^6.0.2",
51
51
  "postcss-fallback": "^0.1.0",
@@ -62,8 +62,8 @@
62
62
  "postcss-url": "^10.1.3",
63
63
  "react": "^18.3.1",
64
64
  "react-dom": "^18.3.1",
65
- "webpack": "^5.99.8",
66
- "webpack-remove-empty-scripts": "^1.0.4",
65
+ "webpack": "^5.99.9",
66
+ "webpack-remove-empty-scripts": "^1.1.1",
67
67
  "xml-formatter": "^3.6.6"
68
68
  },
69
69
  "engines": {
@@ -71,7 +71,7 @@
71
71
  },
72
72
  "scripts": {
73
73
  "build": "tsc",
74
- "clean": "rm -rf build && mkdir build",
74
+ "clean": "rm -rf build",
75
75
  "build:clean": "pnpm run clean && pnpm run build",
76
76
  "watch": "tsc -w"
77
77
  }