@ideasonpurpose/build-tools-wordpress 2.10.5 → 2.10.6

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,13 @@ 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.5
8
+
9
+ > 22 July 2026
10
+
11
+ - logo, vscode settings
12
+ - output tweaks
13
+
7
14
  #### v2.10.4
8
15
 
9
16
  > 18 July 2026
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # @ideasonpurpose/build-tools-wordpress
2
2
 
3
- #### Version 2.10.5
3
+ #### Version 2.10.6
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)
package/bin/zip.js CHANGED
@@ -15,6 +15,7 @@ import { globby } from "globby";
15
15
  import isTextPath from "is-text-path";
16
16
  import replaceStream from "replacestream";
17
17
  import stringLength from "string-length";
18
+ import open from "open";
18
19
 
19
20
  import { buildConfig } from "../index.js";
20
21
  import { prettierHrtime } from "../lib/prettier-hrtime.js";
@@ -181,7 +182,7 @@ function foundReporter(file) {
181
182
  }
182
183
  }
183
184
 
184
- function finishReporter() {
185
+ async function finishReporter() {
185
186
  const outBytes = archive.pointer();
186
187
  const end = process.hrtime(start);
187
188
  const duration = prettierHrtime(end);
@@ -225,4 +226,7 @@ function finishReporter() {
225
226
  chalk.bold(`Remember to push to ${chalk.cyan("GitHub!")}`),
226
227
  );
227
228
  console.log("✨");
229
+
230
+ // Experiment: Try opening the _builds directory at the end of the build
231
+ await open(dirname(zipFile.pathname));
228
232
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ideasonpurpose/build-tools-wordpress",
3
- "version": "2.10.5",
3
+ "version": "2.10.6",
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": {
@@ -67,6 +67,7 @@
67
67
  "is-text-path": "^3.0.0",
68
68
  "lodash": "^4.18.1",
69
69
  "mini-css-extract-plugin": "^2.10.2",
70
+ "open": "^11.0.0",
70
71
  "ora": "^9.4.1",
71
72
  "postcss": "^8.5.19",
72
73
  "postcss-loader": "^8.2.1",