repo-util 1.13.8 → 1.13.11

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "repo-util",
3
- "version": "1.13.8",
3
+ "version": "1.13.11",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -24,9 +24,9 @@
24
24
  "aggregation-repository-provider": "^4.0.46",
25
25
  "bitbucket-repository-provider": "^3.10.22",
26
26
  "commander": "^9.1.0",
27
- "gitea-repository-provider": "^2.1.16",
28
- "github-repository-provider": "^7.25.53",
29
- "local-repository-provider": "^7.2.0"
27
+ "gitea-repository-provider": "^2.1.18",
28
+ "github-repository-provider": "^7.26.0",
29
+ "local-repository-provider": "^8.0.0"
30
30
  },
31
31
  "devDependencies": {
32
32
  "ava": "^4.1.0",
@@ -35,7 +35,7 @@
35
35
  "semantic-release": "^19.0.2"
36
36
  },
37
37
  "engines": {
38
- "node": ">=16.14.0"
38
+ "node": ">=16.14.2"
39
39
  },
40
40
  "repository": {
41
41
  "type": "git",
@@ -4,8 +4,8 @@ import { readFileSync } from "fs";
4
4
  import { program, Option } from "commander";
5
5
  import AggregationProvider from "aggregation-repository-provider";
6
6
 
7
- process.on("uncaughtException", err => console.error(err));
8
- process.on("unhandledRejection", reason => console.error(reason));
7
+ process.on("uncaughtException", console.error);
8
+ process.on("unhandledRejection", console.error);
9
9
 
10
10
  const { version, description } = JSON.parse(
11
11
  readFileSync(new URL("../package.json", import.meta.url).pathname, {
@@ -30,7 +30,6 @@ async function prepareProvider() {
30
30
  program
31
31
  .description(description)
32
32
  .version(version)
33
- .option("--dry", "do not create branch/pull request")
34
33
  .option("--trace", "log level trace")
35
34
  .option("--debug", "log level debug")
36
35
  .option("-D --define <a=b>", "define property", str =>