@plaudit/webpack-extensions 2.73.2 → 2.75.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.
@@ -35,7 +35,7 @@ class AdditionalDependencyInjectorPlugin extends AbstractBiPhasicGroupPlugin_1.A
35
35
  const chunk = entrypoint.getEntrypointChunk();
36
36
  for (const additionalDep of additionalDependencies) {
37
37
  this.addExternalizedDep(additionalDep);
38
- compilation.chunkGraph.connectChunkAndModule(chunk, new webpack_1.ExternalModule("__REMOVE_ME__", "", additionalDep));
38
+ compilation.chunkGraph.connectChunkAndModule(chunk, new webpack_1.ExternalModule("__REMOVE_ME__", "var", additionalDep));
39
39
  }
40
40
  }));
41
41
  });
package/build/shared.d.ts CHANGED
@@ -6,13 +6,15 @@ export type ParsedAssetsJson = Record<string, {
6
6
  version: string;
7
7
  }>;
8
8
  export declare function isParsedAssetsJson(thing: any): thing is ParsedAssetsJson;
9
+ type ScriptArgsObject = {
10
+ strategy?: 'defer' | 'async';
11
+ in_footer?: boolean;
12
+ fetchpriority?: 'auto' | 'low' | 'high';
13
+ };
9
14
  type BaseRestType = [/* dependencies: */ string[], /* version: */ string];
10
15
  export type HandleData = {
11
16
  src: string;
12
- rest: BaseRestType | [...BaseRestType, {
13
- strategy?: 'defer' | 'async';
14
- in_footer?: boolean;
15
- } | boolean];
17
+ rest: BaseRestType | [...BaseRestType, ScriptArgsObject | boolean];
16
18
  };
17
19
  export declare const standardLocationNamesMeta: {
18
20
  readonly clientView: {
@@ -43,10 +45,7 @@ export type UsageLocations = {
43
45
  } & {
44
46
  register?: boolean | number;
45
47
  handle?: string | ((generatedHandle: string) => string);
46
- registerScriptArgs?: {
47
- strategy?: 'defer' | 'async';
48
- in_footer?: boolean;
49
- } | boolean;
48
+ registerScriptArgs?: ScriptArgsObject | boolean;
50
49
  };
51
50
  export declare function constantKeys<K extends string, V>(object: {
52
51
  [k in K]: V;
@@ -121,7 +121,7 @@ function resolveEntryFromDirectory(commonConfig, srcRoot, dest) {
121
121
  return async () => {
122
122
  const loadingEntrypoints = [];
123
123
  for await (const dirent of await promises_1.default.opendir(srcRoot)) {
124
- if (!dirent.isDirectory()) {
124
+ if (!dirent.isDirectory() || dirent.name.startsWith("~")) {
125
125
  continue;
126
126
  }
127
127
  const dir = joinPossiblyAbsolutePaths(srcRoot, dirent.name);
@@ -155,10 +155,9 @@ function resolveEntryFromDirectory(commonConfig, srcRoot, dest) {
155
155
  });
156
156
  }))).filter(pe => pe !== undefined);
157
157
  const entrypointNamesWithEffectiveDuplicates = presentEntrypoints
158
- .map(entry => entry.entrypointName)
159
- .reduce((a, dest) => {
158
+ .reduce((a, entry) => {
160
159
  // If it's undefined, then this is the first instance, otherwise, it's not the first instance and, therefore, is expected to be a duplicate
161
- a[dest] = (a[dest] !== undefined);
160
+ a[entry.entrypointName] = (a[entry.entrypointName] !== undefined);
162
161
  return a;
163
162
  }, {});
164
163
  const handlePrefix = blockJson['name']?.toString() ?? `__UNKNOWN_PREFIX__/${dirent.name}`;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plaudit/webpack-extensions",
3
- "version": "2.73.2",
3
+ "version": "2.75.0",
4
4
  "license": "SEE LICENSE IN LICENSE.md",
5
5
  "files": [
6
6
  "/build"
@@ -20,7 +20,7 @@
20
20
  }
21
21
  },
22
22
  "devDependencies": {
23
- "@plaudit/gutenberg-api-extensions": "^2.79.0",
23
+ "@plaudit/gutenberg-api-extensions": "^2.80.1",
24
24
  "@types/browser-sync-webpack-plugin": "^2.2.5",
25
25
  "@types/node": "^24.10.1",
26
26
  "@types/postcss-functions": "^4.0.4",
@@ -39,7 +39,7 @@
39
39
  "@plaudit/postcss-silent-extend": "^3.0.0",
40
40
  "@plaudit/postcss-strip-units": "^3.0.0",
41
41
  "@plaudit/postcss-variables": "^1.1.0",
42
- "@wordpress/dependency-extraction-webpack-plugin": "^6.35.0",
42
+ "@wordpress/dependency-extraction-webpack-plugin": "^6.36.0",
43
43
  "@wordpress/scripts": "^30.27.0",
44
44
  "autoprefixer": "^10.4.22",
45
45
  "browser-sync": "^3.0.4",
@@ -61,7 +61,7 @@
61
61
  "postcss-reporter": "^7.1.0",
62
62
  "postcss-simple-vars": "^7.0.1",
63
63
  "postcss-url": "^10.1.3",
64
- "webpack": "^5.102.1",
64
+ "webpack": "^5.103.0",
65
65
  "webpack-remove-empty-scripts": "^1.1.1",
66
66
  "xml-formatter": "^3.6.7"
67
67
  },