@html-validate/semantic-release-monorepo-config 6.6.0 → 6.6.1

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 +5 -4
  2. package/package.json +3 -3
package/index.js CHANGED
@@ -1,12 +1,13 @@
1
- const fs = require("fs");
2
- const path = require("path");
1
+ const fs = require("node:fs");
2
+ const path = require("node:path");
3
+ const findUp = require("find-up");
3
4
  const commitAnalyzer = require("@html-validate/semantic-release-config/lib/commit-analyzer");
4
5
  const releaseNotesGenerator = require("@html-validate/semantic-release-config/lib/release-notes-generator");
5
6
  const gitlab = require("@html-validate/semantic-release-config/lib/gitlab");
6
7
  const changelog = require("@html-validate/semantic-release-config/lib/changelog");
7
8
  const exec = require("@html-validate/semantic-release-config/lib/exec");
8
9
  const git = require("@html-validate/semantic-release-config/lib/git");
9
- const findUp = require("find-up");
10
+ const branches = require("@html-validate/semantic-release-config/lib/branches");
10
11
 
11
12
  const PACKAGE_JSON = "package.json";
12
13
  const pkgPath = findUp.sync(PACKAGE_JSON);
@@ -35,4 +36,4 @@ const plugins = [
35
36
  ],
36
37
  ];
37
38
 
38
- module.exports = { plugins };
39
+ module.exports = { branches, plugins };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@html-validate/semantic-release-monorepo-config",
3
- "version": "6.6.0",
3
+ "version": "6.6.1",
4
4
  "description": "Semantic release monorepo configuration used by the various HTML-validate packages",
5
5
  "keywords": [
6
6
  "semantic-release"
@@ -21,7 +21,7 @@
21
21
  "index.js"
22
22
  ],
23
23
  "dependencies": {
24
- "@html-validate/semantic-release-config": "6.6.0",
24
+ "@html-validate/semantic-release-config": "6.6.1",
25
25
  "find-up": "^5.0.0",
26
26
  "lerna": "8.1.8",
27
27
  "semantic-release-lerna": "2.8.0"
@@ -33,5 +33,5 @@
33
33
  "publishConfig": {
34
34
  "access": "public"
35
35
  },
36
- "gitHead": "de1a535fd0bd8e43c318aa6bc33f5dd7ad0ea09d"
36
+ "gitHead": "02db1e026d880fc2057b7e1190634c8b4b7a5698"
37
37
  }