@ideasonpurpose/build-tools-wordpress 1.1.8 → 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.
@@ -11,11 +11,11 @@ jobs:
11
11
  runs-on: ubuntu-22.04
12
12
  steps:
13
13
  # https://github.com/marketplace/actions/checkout
14
- - uses: actions/checkout@v3
14
+ - uses: actions/checkout@v4
15
15
  # https://github.com/actions/setup-node
16
- - uses: actions/setup-node@v3
16
+ - uses: actions/setup-node@v4
17
17
  with:
18
- node-version: 18
18
+ node-version: 20
19
19
  registry-url: https://registry.npmjs.org/
20
20
  # - run: npm ci
21
21
  - run: npm publish
@@ -12,7 +12,7 @@ jobs:
12
12
 
13
13
  steps:
14
14
  # https://github.com/marketplace/actions/checkout
15
- - uses: actions/checkout@v3
15
+ - uses: actions/checkout@v4
16
16
 
17
17
  - name: Set up REPO and TAG environment vars
18
18
  run: |
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
+ #### v1.1.9
8
+
9
+ > 4 March 2024
10
+
11
+ - update actions
12
+ - missed a couple readline calls
13
+
14
+ #### v1.1.8
15
+
16
+ > 4 March 2024
17
+
18
+ - quick remove readline function
19
+
7
20
  #### v1.1.7
8
21
 
9
22
  > 4 March 2024
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # @ideasonpurpose/build-tools-wordpress
2
2
 
3
- #### Version 1.1.8
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
  }
@@ -192,8 +192,11 @@ function finishReporter() {
192
192
  const savedBytes = inBytes - outBytes;
193
193
  const savedPercent = ((1 - outBytes / inBytes) * 100).toFixed(2);
194
194
 
195
- process.stdout.clearLine();
196
- process.stdout.cursorTo(0);
195
+ // process.stdout.clearLine();
196
+ clearLine(process.stdout);
197
+
198
+ // process.stdout.cursorTo(0);
199
+ cursorTo(process.stdout, 0);
197
200
 
198
201
  console.log(
199
202
  "🔍 ",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ideasonpurpose/build-tools-wordpress",
3
- "version": "1.1.8",
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": {