@ideasonpurpose/build-tools-wordpress 2.10.4 → 2.10.5
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 +6 -0
- package/README.md +4 -4
- package/lib/AfterDoneReporterPlugin.js +1 -1
- package/package.json +1 -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,12 @@ 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.4
|
|
8
|
+
|
|
9
|
+
> 18 July 2026
|
|
10
|
+
|
|
11
|
+
- fix zip reporting and resolve typescript types
|
|
12
|
+
|
|
7
13
|
#### v2.10.3
|
|
8
14
|
|
|
9
15
|
> 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.5
|
|
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 -->
|
|
@@ -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.5",
|
|
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": {
|