virtual-code-owners 9.1.2 → 9.1.3

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/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2022-2025 Sander Verweij
3
+ Copyright (c) 2022-2026 Sander Verweij
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
@@ -89,7 +89,10 @@ function parseSection(pUntreatedLine, pLineNo, pTeamMap) {
89
89
  inlineComment: lCommentSplitLine[1] ?? "",
90
90
  };
91
91
  if (lSection.groups.minApprovers) {
92
- lReturnValue.minApprovers = parseInt(lSection.groups.minApprovers, 10);
92
+ lReturnValue.minApprovers = Number.parseInt(
93
+ lSection.groups.minApprovers,
94
+ 10,
95
+ );
93
96
  }
94
97
  return lReturnValue;
95
98
  }
package/dist/version.js CHANGED
@@ -1 +1 @@
1
- export const VERSION = "9.1.2";
1
+ export const VERSION = "9.1.3";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "virtual-code-owners",
3
- "version": "9.1.2",
3
+ "version": "9.1.3",
4
4
  "description": "CODEOWNERS with teams for teams that can't use GitHub teams",
5
5
  "type": "module",
6
6
  "bin": {
@@ -26,13 +26,14 @@
26
26
  "url": "https://github.com/sverweij/virtual-code-owners/issues"
27
27
  },
28
28
  "dependencies": {
29
- "yaml": "2.8.2"
29
+ "yaml": "2.8.3"
30
30
  },
31
31
  "overrides": {
32
- "glob": "^12.0.0"
33
- },
34
- "resolutions": {
35
- "glob": "^12.0.0"
32
+ "glob": "^12.0.0",
33
+ "minimatch": "^10.2.2",
34
+ "c8": {
35
+ "yargs": "^18.0.0"
36
+ }
36
37
  },
37
38
  "engines": {
38
39
  "node": "^20.12||^22||>=24"