@html-validate/semantic-release-monorepo-config 6.10.1 → 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.
Files changed (2) hide show
  1. package/index.js +4 -4
  2. package/package.json +4 -4
package/index.js CHANGED
@@ -1,12 +1,12 @@
1
1
  const fs = require("node:fs");
2
2
  const path = require("node:path");
3
- const commitAnalyzer = require("@html-validate/semantic-release-config/lib/commit-analyzer");
4
- const releaseNotesGenerator = require("@html-validate/semantic-release-config/lib/release-notes-generator");
5
- const gitlab = require("@html-validate/semantic-release-config/lib/gitlab");
3
+ const branches = require("@html-validate/semantic-release-config/lib/branches");
6
4
  const changelog = require("@html-validate/semantic-release-config/lib/changelog");
5
+ const commitAnalyzer = require("@html-validate/semantic-release-config/lib/commit-analyzer");
7
6
  const exec = require("@html-validate/semantic-release-config/lib/exec");
8
7
  const git = require("@html-validate/semantic-release-config/lib/git");
9
- const branches = require("@html-validate/semantic-release-config/lib/branches");
8
+ const gitlab = require("@html-validate/semantic-release-config/lib/gitlab");
9
+ const releaseNotesGenerator = require("@html-validate/semantic-release-config/lib/release-notes-generator");
10
10
 
11
11
  /**
12
12
  * @param {string} name
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@html-validate/semantic-release-monorepo-config",
3
- "version": "6.10.1",
3
+ "version": "7.0.0",
4
4
  "description": "Semantic release monorepo configuration used by the various HTML-validate packages",
5
5
  "keywords": [
6
6
  "semantic-release"
@@ -21,16 +21,16 @@
21
21
  "index.js"
22
22
  ],
23
23
  "dependencies": {
24
- "@html-validate/semantic-release-config": "6.10.1",
24
+ "@html-validate/semantic-release-config": "7.0.0",
25
25
  "lerna": "9.0.0",
26
26
  "semantic-release-lerna": "2.12.0"
27
27
  },
28
28
  "engines": {
29
- "node": ">= 20.19.0",
29
+ "node": ">= 22.14.0",
30
30
  "npm": ">= 7"
31
31
  },
32
32
  "publishConfig": {
33
33
  "access": "public"
34
34
  },
35
- "gitHead": "ac1b5e8db09bd82588d982b3132b5a1768a65eb2"
35
+ "gitHead": "1c864ac3d029d65f01366e60657d2c6900fdddc1"
36
36
  }