@companion-module/tools 2.0.4 → 2.1.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.1.1](https://github.com/bitfocus/companion-module-tools/compare/v2.1.0...v2.1.1) (2024-12-17)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * add tsconfig for node22 ([8e0a7b1](https://github.com/bitfocus/companion-module-tools/commit/8e0a7b1d29e5f17d7df18d20f487c452797b7d38))
9
+
10
+ ## [2.1.0](https://github.com/bitfocus/companion-module-tools/compare/v2.0.4...v2.1.0) (2024-09-23)
11
+
12
+
13
+ ### Features
14
+
15
+ * allow using node22 ([a9bbbaf](https://github.com/bitfocus/companion-module-tools/commit/a9bbbaf84dcf518c5a69ca44f33ca76f63b64a35))
16
+
3
17
  ## [2.0.4](https://github.com/bitfocus/companion-module-tools/compare/v2.0.3...v2.0.4) (2024-09-16)
4
18
 
5
19
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@companion-module/tools",
3
- "version": "2.0.4",
3
+ "version": "2.1.1",
4
4
  "type": "module",
5
5
  "main": "index.js",
6
6
  "license": "MIT",
@@ -14,7 +14,7 @@
14
14
  "companion-module-check": "scripts/check.js"
15
15
  },
16
16
  "engines": {
17
- "node": "^18.18"
17
+ "node": "^18.18 || ^22.8"
18
18
  },
19
19
  "files": [
20
20
  "eslint",
@@ -26,19 +26,19 @@
26
26
  "webpack.*"
27
27
  ],
28
28
  "dependencies": {
29
- "@eslint/js": "^9.10.0",
29
+ "@eslint/js": "^9.17.0",
30
30
  "eslint-config-prettier": "^9.1.0",
31
- "eslint-plugin-n": "^17.10.2",
31
+ "eslint-plugin-n": "^17.15.0",
32
32
  "eslint-plugin-prettier": "^5.2.1",
33
33
  "find-up": "^7.0.0",
34
34
  "parse-author": "^2.0.0",
35
35
  "tar": "^7.4.3",
36
- "webpack": "^5.94.0",
36
+ "webpack": "^5.97.1",
37
37
  "webpack-cli": "^5.1.4",
38
- "zx": "^8.1.6"
38
+ "zx": "^8.2.4"
39
39
  },
40
40
  "peerDependencies": {
41
- "@companion-module/base": "^1.7.1",
41
+ "@companion-module/base": "^1.11.0",
42
42
  "eslint": "^9.0.0",
43
43
  "prettier": "^3.0.0",
44
44
  "typescript-eslint": "^8.2.0"
@@ -56,9 +56,9 @@
56
56
  },
57
57
  "devDependencies": {
58
58
  "@types/eslint": "^9.6.1",
59
- "eslint": "^9.10.0",
60
- "prettier": "^3.3.3",
61
- "typescript-eslint": "^8.5.0"
59
+ "eslint": "^9.17.0",
60
+ "prettier": "^3.4.2",
61
+ "typescript-eslint": "^8.18.1"
62
62
  },
63
- "packageManager": "yarn@4.4.1"
63
+ "packageManager": "yarn@4.5.3"
64
64
  }
@@ -57,7 +57,7 @@ const manifest = {
57
57
  legacyIds: [...(pkgJson.legacy || [])],
58
58
 
59
59
  runtime: {
60
- type: 'node18',
60
+ type: 'node22',
61
61
  api: 'nodejs-ipc',
62
62
  apiVersion: '0.0.0',
63
63
 
@@ -0,0 +1,30 @@
1
+ {
2
+ "compilerOptions": {
3
+ "module": "commonjs",
4
+ "target": "es2022",
5
+ "noImplicitAny": true,
6
+ "moduleResolution": "node",
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": ["es2023"],
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
+ }