@ideasonpurpose/build-tools-wordpress 2.10.0 → 2.10.2

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.
package/CHANGELOG.md CHANGED
@@ -4,6 +4,20 @@ All notable changes to this project will be documented in this file. Dates are d
4
4
 
5
5
  Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
6
6
 
7
+ #### v2.10.1
8
+
9
+ > 15 July 2026
10
+
11
+ - remove infrastructureLogging
12
+
13
+ #### v2.10.0
14
+
15
+ > 15 July 2026
16
+
17
+ - bump deps, AGENTS
18
+ - update proxy, messing with output
19
+ - add discard-changes config to example composer.json
20
+
7
21
  #### v2.9.1
8
22
 
9
23
  > 26 June 2026
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # @ideasonpurpose/build-tools-wordpress
2
2
 
3
- #### Version 2.10.0
3
+ #### Version 2.10.2
4
4
 
5
5
  [![NPM Version](https://img.shields.io/npm/v/%40ideasonpurpose%2Fbuild-tools-wordpress?logo=npm)](https://www.npmjs.com/package/@ideasonpurpose/build-tools-wordpress)
6
6
  [![GitHub Actions Workflow Status](https://img.shields.io/github/actions/workflow/status/ideasonpurpose/build-tools-wordpress/npm-publish.yml?logo=github&logoColor=white)](https://github.com/ideasonpurpose/build-tools-wordpress#readme)
@@ -371,9 +371,6 @@ export default async (env) => {
371
371
 
372
372
  devMiddleware: {
373
373
  index: false, // enable root proxying
374
- infrastructureLogging: {
375
- level: "warn", // or "error" for even stricter
376
- },
377
374
  writeToDisk: (filePath) => {
378
375
  // // // SHORT_CIRCUIT FOR TESTING
379
376
  // // console.log("DEBUG writeToDisk:", { filePath });
@@ -27,7 +27,7 @@ export class WatchRunReporterPlugin {
27
27
  compiler.hooks.watchRun.tap(this.name, () => {
28
28
  if (!this.config.echo) return;
29
29
 
30
- const root = compiler.context || process.cwd();
30
+ const root = process.cwd();
31
31
  const modFiles = compiler.modifiedFiles?.size
32
32
  ? Array.from(compiler.modifiedFiles)
33
33
  : null;
@@ -39,7 +39,7 @@ export class WatchRunReporterPlugin {
39
39
  if (!changed) return;
40
40
 
41
41
  const relFiles = changed
42
- .map((p) => path.relative(root, p) || p)
42
+ .map((p) => path.relative(root, p) || ".")
43
43
  .sort();
44
44
 
45
45
  let changeMsg;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ideasonpurpose/build-tools-wordpress",
3
- "version": "2.10.0",
3
+ "version": "2.10.2",
4
4
  "description": "Build scripts and dependencies for IOP's WordPress development environments.",
5
5
  "homepage": "https://github.com/ideasonpurpose/build-tools-wordpress#readme",
6
6
  "bugs": {