@companion-module/tools 2.5.0 → 2.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # Changelog
2
2
 
3
+ ## [2.6.1](https://github.com/bitfocus/companion-module-tools/compare/v2.6.0...v2.6.1) (2026-01-29)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * downgrade find-up for nodejs 18 suppport ([2c35333](https://github.com/bitfocus/companion-module-tools/commit/2c35333b067c30b80e54c9c91e4d3a497dad67b5))
9
+
10
+ ## [2.6.0](https://github.com/bitfocus/companion-module-tools/compare/v2.5.0...v2.6.0) (2026-01-28)
11
+
12
+
13
+ ### Features
14
+
15
+ * add `@companion-module/tools/tsconfig/node22/recommended-esm` tsconfig ([3fec18c](https://github.com/bitfocus/companion-module-tools/commit/3fec18c8db8c38c9246b36d458aa59d56f49c108))
16
+
3
17
  ## [2.5.0](https://github.com/bitfocus/companion-module-tools/compare/v2.4.2...v2.5.0) (2025-12-15)
4
18
 
5
19
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@companion-module/tools",
3
- "version": "2.5.0",
3
+ "version": "2.6.1",
4
4
  "type": "module",
5
5
  "main": "index.js",
6
6
  "license": "MIT",
@@ -30,13 +30,13 @@
30
30
  "dependencies": {
31
31
  "@eslint/js": "^9.39.2",
32
32
  "eslint-config-prettier": "^10.1.8",
33
- "eslint-plugin-n": "^17.23.1",
34
- "eslint-plugin-prettier": "^5.5.4",
33
+ "eslint-plugin-n": "^17.23.2",
34
+ "eslint-plugin-prettier": "^5.5.5",
35
35
  "find-up": "^7.0.0",
36
36
  "parse-author": "^2.0.0",
37
37
  "semver": "^7.7.3",
38
- "tar": "^7.5.2",
39
- "webpack": "^5.103.0",
38
+ "tar": "^7.5.7",
39
+ "webpack": "^5.104.1",
40
40
  "webpack-cli": "^6.0.1",
41
41
  "zx": "^8.8.5"
42
42
  },
@@ -67,8 +67,8 @@
67
67
  "devDependencies": {
68
68
  "@types/eslint": "^9.6.1",
69
69
  "eslint": "^9.39.2",
70
- "prettier": "^3.7.4",
71
- "typescript-eslint": "^8.50.0"
70
+ "prettier": "^3.8.1",
71
+ "typescript-eslint": "^8.54.0"
72
72
  },
73
73
  "packageManager": "yarn@4.12.0"
74
74
  }
@@ -0,0 +1,30 @@
1
+ {
2
+ "compilerOptions": {
3
+ "module": "node20",
4
+ "target": "es2024",
5
+ "noImplicitAny": true,
6
+ "moduleResolution": "node16",
7
+ "sourceMap": true,
8
+ "paths": {
9
+ "*": ["../node_modules/*"]
10
+ },
11
+ "declaration": false,
12
+ "importHelpers": false,
13
+ "listFiles": false,
14
+ "traceResolution": false,
15
+ "pretty": true,
16
+ "lib": ["es2024"],
17
+ "types": ["node"],
18
+ "strict": true,
19
+ "alwaysStrict": false,
20
+ "forceConsistentCasingInFileNames": true,
21
+ "noFallthroughCasesInSwitch": true,
22
+ "noImplicitReturns": true,
23
+ "noUnusedLocals": true,
24
+ "noUnusedParameters": true,
25
+ "skipLibCheck": true,
26
+ "allowSyntheticDefaultImports": true,
27
+ "esModuleInterop": true
28
+ },
29
+ "compileOnSave": false
30
+ }