@ideasonpurpose/build-tools-wordpress 2.10.4 → 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/.vscode/settings.json +9 -2
- package/CHANGELOG.md +13 -0
- package/README.md +4 -4
- package/bin/zip.js +5 -1
- package/lib/AfterDoneReporterPlugin.js +1 -1
- package/package.json +2 -1
package/.vscode/settings.json
CHANGED
|
@@ -11,12 +11,19 @@
|
|
|
11
11
|
"statusBar.background": "#ff8ebf",
|
|
12
12
|
"statusBar.foreground": "#15202b",
|
|
13
13
|
"statusBarItem.hoverBackground": "#ff5ba2",
|
|
14
|
-
"statusBarItem.remoteBackground": "#
|
|
14
|
+
"statusBarItem.remoteBackground": "#edffdf",
|
|
15
15
|
"statusBarItem.remoteForeground": "#15202b",
|
|
16
16
|
"titleBar.activeBackground": "#ff8ebf",
|
|
17
17
|
"titleBar.activeForeground": "#15202b",
|
|
18
18
|
"titleBar.inactiveBackground": "#ff8ebf99",
|
|
19
|
-
"titleBar.inactiveForeground": "#15202b99"
|
|
19
|
+
"titleBar.inactiveForeground": "#15202b99",
|
|
20
|
+
"activityBarTop.activeBackground": "#ffc1dc",
|
|
21
|
+
"activityBarTop.background": "#ffc1dc",
|
|
22
|
+
"activityBarTop.foreground": "#15202b",
|
|
23
|
+
"activityBarTop.inactiveForeground": "#15202b99",
|
|
24
|
+
"commandCenter.foreground": "#15202b",
|
|
25
|
+
"statusBar.debuggingBackground": "#ff8ebf",
|
|
26
|
+
"statusBar.debuggingForeground": "#15202b"
|
|
20
27
|
},
|
|
21
28
|
"peacock.color": "#ff8ebf"
|
|
22
29
|
}
|
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,19 @@ 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
|
+
|
|
14
|
+
#### v2.10.4
|
|
15
|
+
|
|
16
|
+
> 18 July 2026
|
|
17
|
+
|
|
18
|
+
- fix zip reporting and resolve typescript types
|
|
19
|
+
|
|
7
20
|
#### v2.10.3
|
|
8
21
|
|
|
9
22
|
> 17 July 2026
|
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @ideasonpurpose/build-tools-wordpress
|
|
2
2
|
|
|
3
|
-
#### Version 2.10.
|
|
3
|
+
#### Version 2.10.6
|
|
4
4
|
|
|
5
5
|
[](https://www.npmjs.com/package/@ideasonpurpose/build-tools-wordpress)
|
|
6
6
|
[](https://github.com/ideasonpurpose/build-tools-wordpress#readme)
|
|
@@ -95,13 +95,13 @@ Sass can import stylesheet files directly from npm packages. Use the full path f
|
|
|
95
95
|
|
|
96
96
|
A GitHub action will auto-publish version-tagged releases to npm. In order to publish, the repository must have an `NPM_TOKEN` secret set with the token from npm. [Log into npmjs.org](https://www.npmjs.com/login) with a publish-authorized account, then find the token page linked from the Profile page sidebar. Generate a new token and update the repository secret.
|
|
97
97
|
|
|
98
|
-
<!-- START IOP CREDIT BLURB -->
|
|
98
|
+
<!-- START IOP CREDIT BLURB 2026-07-->
|
|
99
99
|
|
|
100
100
|
##
|
|
101
101
|
|
|
102
102
|
#### Brought to you by IOP
|
|
103
103
|
|
|
104
|
-
| <a href="https://www.ideasonpurpose.com"><img src="https://raw.githubusercontent.com/ideasonpurpose/ideasonpurpose/master/iop-logo-white-on-black-88px.png" height="44" align="top" alt="IOP Logo"></a> | This project is actively developed and used in production at <a href="https://www.ideasonpurpose.com">Ideas On Purpose</a>. |
|
|
105
|
-
|
|
|
104
|
+
| <a href="https://www.ideasonpurpose.com"><img src="https://raw.githubusercontent.com/ideasonpurpose/ideasonpurpose/master/iop-logo-white-on-black-88px.png" width="44" height="44" align="top" alt="IOP Logo"></a> <br> | This project is actively developed and used in production at <a href="https://www.ideasonpurpose.com">Ideas On Purpose</a>. <br> |
|
|
105
|
+
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------- |
|
|
106
106
|
|
|
107
107
|
<!-- END IOP CREDIT BLURB -->
|
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
|
}
|
|
@@ -53,7 +53,7 @@ export class AfterDoneReporterPlugin {
|
|
|
53
53
|
|
|
54
54
|
const assetMap = new Map();
|
|
55
55
|
for (const asset of json.assets ?? []) {
|
|
56
|
-
if (/hot-update
|
|
56
|
+
if (/hot-update|\.asset\.php$/.test(asset.name)) continue;
|
|
57
57
|
assetMap.set(asset.name, asset);
|
|
58
58
|
}
|
|
59
59
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ideasonpurpose/build-tools-wordpress",
|
|
3
|
-
"version": "2.10.
|
|
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",
|