@ideasonpurpose/build-tools-wordpress 1.1.9 → 1.1.10

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
+ #### v1.1.9
8
+
9
+ > 4 March 2024
10
+
11
+ - update actions
12
+ - missed a couple readline calls
13
+
7
14
  #### v1.1.8
8
15
 
9
16
  > 4 March 2024
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # @ideasonpurpose/build-tools-wordpress
2
2
 
3
- #### Version 1.1.9
3
+ #### Version 1.1.10
4
4
 
5
5
  ![NPM Version](https://img.shields.io/npm/v/%40ideasonpurpose%2Fbuild-tools-wordpress?logo=npm)
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)
package/bin/zip.js CHANGED
@@ -177,9 +177,9 @@ function foundReporter(file) {
177
177
 
178
178
  if (fileCount % 25 == 0) {
179
179
  // process.stdout.clearLine();
180
- clearLine(stdout);
180
+ clearLine(process.stdout);
181
181
  // process.stdout.cursorTo(0);
182
- cursorTo(stdout, 0);
182
+ cursorTo(process.stdout, 0);
183
183
  process.stdout.write(outString);
184
184
 
185
185
  }
@@ -193,10 +193,10 @@ function finishReporter() {
193
193
  const savedPercent = ((1 - outBytes / inBytes) * 100).toFixed(2);
194
194
 
195
195
  // process.stdout.clearLine();
196
- clearLine(stdout);
196
+ clearLine(process.stdout);
197
197
 
198
198
  // process.stdout.cursorTo(0);
199
- cursorTo(stdout, 0);
199
+ cursorTo(process.stdout, 0);
200
200
 
201
201
  console.log(
202
202
  "🔍 ",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ideasonpurpose/build-tools-wordpress",
3
- "version": "1.1.9",
3
+ "version": "1.1.10",
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": {