@companion-module/tools 0.3.3 → 0.4.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,24 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.4.1](https://github.com/bitfocus/companion-module-tools/compare/v0.4.0...v0.4.1) (2022-11-26)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * updated tsconfig ([6dd1a05](https://github.com/bitfocus/companion-module-tools/commit/6dd1a0544e5d9f784f276485cb9254b35195f3c1))
9
+
10
+ ## [0.4.0](https://github.com/bitfocus/companion-module-tools/compare/v0.3.3...v0.4.0) (2022-11-26)
11
+
12
+
13
+ ### Features
14
+
15
+ * require node 18 ([f4dfdd2](https://github.com/bitfocus/companion-module-tools/commit/f4dfdd2f510642ca99937100139a65f2903affe9))
16
+
17
+
18
+ ### Bug Fixes
19
+
20
+ * add missing dependency ([eacc0f4](https://github.com/bitfocus/companion-module-tools/commit/eacc0f4e9c4af028905d9a096570ce5f34212733))
21
+
3
22
  ## [0.3.3](https://github.com/bitfocus/companion-module-tools/compare/v0.3.2...v0.3.3) (2022-11-22)
4
23
 
5
24
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@companion-module/tools",
3
- "version": "0.3.3",
3
+ "version": "0.4.1",
4
4
  "type": "module",
5
5
  "main": "index.js",
6
6
  "license": "MIT",
@@ -10,6 +10,9 @@
10
10
  "companion-module-check": "scripts/check.js",
11
11
  "companion-generate-manifest": "scripts/generate-manifest.js"
12
12
  },
13
+ "engines": {
14
+ "node": "^18.12"
15
+ },
13
16
  "files": [
14
17
  "eslint",
15
18
  "scripts",
@@ -20,20 +23,21 @@
20
23
  "webpack.*"
21
24
  ],
22
25
  "dependencies": {
23
- "@typescript-eslint/eslint-plugin": "^5.42.1",
24
- "@typescript-eslint/parser": "^5.42.1",
25
- "eslint": "^8.27.0",
26
+ "@typescript-eslint/eslint-plugin": "^5.44.0",
27
+ "@typescript-eslint/parser": "^5.44.0",
28
+ "eslint": "^8.28.0",
26
29
  "eslint-config-prettier": "^8.5.0",
27
30
  "eslint-plugin-node": "^11.1.0",
28
31
  "eslint-plugin-prettier": "^4.2.1",
29
32
  "find-up": "^6.3.0",
30
33
  "parse-author": "^2.0.0",
31
- "prettier": "^2.7.1",
32
- "webpack": "^5.74.0",
33
- "webpack-cli": "^4.10.0",
34
- "zx": "^4.3.0"
34
+ "prettier": "^2.8.0",
35
+ "tar": "^6.1.12",
36
+ "webpack": "^5.75.0",
37
+ "webpack-cli": "^5.0.0",
38
+ "zx": "^7.1.1"
35
39
  },
36
40
  "peerDependencies": {
37
- "@companion-module/base": "^0.4.6"
41
+ "@companion-module/base": "^0.6.0"
38
42
  }
39
43
  }
@@ -51,7 +51,7 @@ const manifest = {
51
51
  legacyIds: [...(pkgJson.legacy || [])],
52
52
 
53
53
  runtime: {
54
- type: 'node14',
54
+ type: 'node18',
55
55
  api: 'nodejs-ipc',
56
56
  apiVersion: '0.0.0',
57
57
 
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "compilerOptions": {
3
3
  "module": "commonjs",
4
- "target": "es2018",
4
+ "target": "es2022",
5
5
  "noImplicitAny": true,
6
6
  "moduleResolution": "node",
7
7
  "sourceMap": true,
@@ -13,7 +13,7 @@
13
13
  "listFiles": false,
14
14
  "traceResolution": false,
15
15
  "pretty": true,
16
- "lib": ["es2018"],
16
+ "lib": ["es2022"],
17
17
  "types": ["node"],
18
18
  "strict": true,
19
19
  "alwaysStrict": false,
@@ -23,7 +23,8 @@
23
23
  "noUnusedLocals": true,
24
24
  "noUnusedParameters": true,
25
25
  "skipLibCheck": true,
26
- "allowSyntheticDefaultImports": true
26
+ "allowSyntheticDefaultImports": true,
27
+ "esModuleInterop": true
27
28
  },
28
29
  "compileOnSave": false
29
30
  }