@ideasonpurpose/build-tools-wordpress 2.1.0 → 2.1.1
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 +7 -0
- package/README.md +1 -1
- package/bin/zip.js +7 -7
- package/lib/devserver-proxy.js +2 -2
- package/package.json +1 -1
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.1.0
|
|
8
|
+
|
|
9
|
+
> 1 April 2025
|
|
10
|
+
|
|
11
|
+
- bump deps
|
|
12
|
+
- Standardize on sass-embedded, clean up, bump deps
|
|
13
|
+
|
|
7
14
|
#### v2.0.6
|
|
8
15
|
|
|
9
16
|
> 20 March 2025
|
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @ideasonpurpose/build-tools-wordpress
|
|
2
2
|
|
|
3
|
-
#### Version 2.1.
|
|
3
|
+
#### Version 2.1.1
|
|
4
4
|
|
|
5
5
|
[](https://www.npmjs.com/package/@ideasonpurpose/build-tools-wordpress)
|
|
6
6
|
[](https://github.com/ideasonpurpose/build-tools-wordpress#readme)
|
package/bin/zip.js
CHANGED
|
@@ -56,13 +56,13 @@ const versionDirName = `${archiveName}${archiveVersion}`.replace(/[ .]/g, "_");
|
|
|
56
56
|
const zipFileName = `${versionDirName}.zip`;
|
|
57
57
|
const zipFile = new URL(`_builds/${zipFileName}`, config.configFileUrl);
|
|
58
58
|
|
|
59
|
-
console.log({
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
});
|
|
59
|
+
// console.log({
|
|
60
|
+
// archiveName,
|
|
61
|
+
// archiveVersion,
|
|
62
|
+
// versionDirName,
|
|
63
|
+
// zipFile,
|
|
64
|
+
// zipFileName,
|
|
65
|
+
// });
|
|
66
66
|
|
|
67
67
|
ensureFileSync(zipFile.pathname);
|
|
68
68
|
const output = createWriteStream(zipFile);
|
package/lib/devserver-proxy.js
CHANGED
|
@@ -24,7 +24,7 @@ export async function devserverProxy(config) {
|
|
|
24
24
|
console.log(
|
|
25
25
|
chalk.cyan.bold(
|
|
26
26
|
`PORT FROM DEVSERVER-PROXY: TRUE ${localPort.port}`,
|
|
27
|
-
target,
|
|
27
|
+
// target,
|
|
28
28
|
),
|
|
29
29
|
);
|
|
30
30
|
}
|
|
@@ -49,7 +49,7 @@ export async function devserverProxy(config) {
|
|
|
49
49
|
"PORT FROM DEVSERVER-PROXY:",
|
|
50
50
|
chalk.cyan(config.proxy),
|
|
51
51
|
chalk.bold(localPort.port),
|
|
52
|
-
target,
|
|
52
|
+
// target,
|
|
53
53
|
);
|
|
54
54
|
}
|
|
55
55
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ideasonpurpose/build-tools-wordpress",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.1",
|
|
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": {
|