watskeburt 2.0.2 → 2.0.3

Sign up to get free protection for your applications and to get access to all the features.
@@ -34,7 +34,7 @@ export default function formatToRegex(
34
34
  .filter((pChange) => pChangeTypes.has(pChange.changeType))
35
35
  .map(({ name }) => name)
36
36
  .filter((pName) => pExtensions.has(extname(pName)))
37
- .map((pName) => pName.replace(/\\/g, "\\\\").replace(/\./g, "\\."))
37
+ .map((pName) => pName.replace(/\\/g, "\\\\").replace(/\./g, "[.]"))
38
38
  .join("|");
39
39
  return `^(${lChanges})$`;
40
40
  }
package/dist/version.js CHANGED
@@ -1 +1 @@
1
- export const VERSION = "2.0.2";
1
+ export const VERSION = "2.0.3";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "watskeburt",
3
- "version": "2.0.2",
3
+ "version": "2.0.3",
4
4
  "description": "List files changed since a git revision",
5
5
  "keywords": [
6
6
  "git",
@@ -45,10 +45,10 @@
45
45
  "README.md"
46
46
  ],
47
47
  "devDependencies": {
48
- "@types/node": "20.9.3",
49
- "@typescript-eslint/eslint-plugin": "6.12.0",
48
+ "@types/node": "20.10.1",
49
+ "@typescript-eslint/eslint-plugin": "6.13.1",
50
50
  "c8": "8.0.1",
51
- "dependency-cruiser": "15.3.0",
51
+ "dependency-cruiser": "15.5.0",
52
52
  "eslint": "8.54.0",
53
53
  "eslint-config-moving-meadow": "4.0.2",
54
54
  "eslint-config-prettier": "9.0.0",
@@ -61,7 +61,7 @@
61
61
  "eslint-plugin-unicorn": "49.0.0",
62
62
  "npm-run-all": "4.1.5",
63
63
  "prettier": "3.1.0",
64
- "tsx": "4.2.0",
64
+ "tsx": "4.6.1",
65
65
  "typescript": "5.3.2",
66
66
  "upem": "9.0.2"
67
67
  },