@html-validate/release-scripts 6.9.6 → 7.0.0

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/lib/postpack.js CHANGED
@@ -1,8 +1,8 @@
1
1
  /* eslint-disable no-console -- cli script, expected to print to console */
2
2
  /* eslint-disable n/no-process-exit -- cli script, want it to exit with non-zero status */
3
3
 
4
- const path = require("path");
5
- const fs = require("fs");
4
+ const fs = require("node:fs");
5
+ const path = require("node:path");
6
6
 
7
7
  /* ensure this script runs via the correct lifecycle event */
8
8
  const { npm_command: command, npm_lifecycle_event: event } = process.env;
package/lib/prepack.js CHANGED
@@ -1,8 +1,8 @@
1
1
  /* eslint-disable no-console -- cli script, expected to print to console */
2
2
  /* eslint-disable n/no-process-exit -- cli script, want it to exit with non-zero status */
3
3
 
4
- const path = require("path");
5
- const fs = require("fs");
4
+ const fs = require("node:fs");
5
+ const path = require("node:path");
6
6
  const { filterDependencies } = require("./filter-dependencies");
7
7
  const { getArgs } = require("./get-args");
8
8
  const { readPackageJson } = require("./read-package-json");
@@ -1,4 +1,4 @@
1
- const fs = require("fs");
1
+ const fs = require("node:fs");
2
2
 
3
3
  /**
4
4
  * @param {string} filePath
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@html-validate/release-scripts",
3
- "version": "6.9.6",
3
+ "version": "7.0.0",
4
4
  "description": "Various script used by release toolchain",
5
5
  "keywords": [
6
6
  "release"
@@ -28,14 +28,14 @@
28
28
  "!**/*.spec.js"
29
29
  ],
30
30
  "devDependencies": {
31
- "nano-spawn": "1.0.3"
31
+ "nano-spawn": "2.0.0"
32
32
  },
33
33
  "engines": {
34
- "node": ">= 20.8.1",
34
+ "node": ">= 22.14.0",
35
35
  "npm": ">= 7"
36
36
  },
37
37
  "publishConfig": {
38
38
  "access": "public"
39
39
  },
40
- "gitHead": "0fc63c8ae4705a826680fa2b25351420c3c583ad"
40
+ "gitHead": "1c864ac3d029d65f01366e60657d2c6900fdddc1"
41
41
  }