@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 +2 -2
- package/lib/prepack.js +2 -2
- package/lib/read-package-json.js +1 -1
- package/package.json +4 -4
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
|
|
5
|
-
const
|
|
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
|
|
5
|
-
const
|
|
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");
|
package/lib/read-package-json.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@html-validate/release-scripts",
|
|
3
|
-
"version": "
|
|
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": "
|
|
31
|
+
"nano-spawn": "2.0.0"
|
|
32
32
|
},
|
|
33
33
|
"engines": {
|
|
34
|
-
"node": ">=
|
|
34
|
+
"node": ">= 22.14.0",
|
|
35
35
|
"npm": ">= 7"
|
|
36
36
|
},
|
|
37
37
|
"publishConfig": {
|
|
38
38
|
"access": "public"
|
|
39
39
|
},
|
|
40
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "1c864ac3d029d65f01366e60657d2c6900fdddc1"
|
|
41
41
|
}
|