Skip to content

Commit e210ec1

Browse files
authored
Merge pull request #13 from phillipivan/main
1.1.2
2 parents 3288f9a + 4680626 commit e210ec1

File tree

8 files changed

+2516
-1716
lines changed

8 files changed

+2516
-1716
lines changed

Diff for: .github/workflows/companion-module-checks.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,3 @@ jobs:
1515
uses: bitfocus/actions/.github/workflows/module-checks.yaml@main
1616
# with:
1717
# upload-artifact: true # uncomment this to upload the built package as an artifact to this workflow that you can download and share with others
18-

Diff for: .gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
.vscode/
2+
.yarn/
23
node_modules/
34
package-lock.json
45
/pkg

Diff for: .yarnrc.yml

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
nodeLinker: node-modules

Diff for: companion/HELP.md

+5
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,11 @@ The Action Recorder will translate any recieved numeric valueIs messages into Co
4949

5050
## Version History
5151

52+
### Version 1.1.2
53+
54+
- Use Node 22
55+
- Update dependencies
56+
5257
### Version 1.1.1
5358

5459
- Minor fixes

Diff for: companion/manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
}
1515
],
1616
"runtime": {
17-
"type": "node18",
17+
"type": "node22",
1818
"api": "nodejs-ipc",
1919
"apiVersion": "0.0.0",
2020
"entrypoint": "../src/main.js"

Diff for: eslint.config.mjs

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
import { generateEslintConfig } from '@companion-module/tools/eslint/config.mjs'
2+
3+
const baseConfig = await generateEslintConfig({})
4+
5+
const customConfig = [
6+
...baseConfig,
7+
{
8+
languageOptions: {
9+
sourceType: 'module',
10+
},
11+
},
12+
]
13+
14+
export default customConfig

Diff for: package.json

+13-6
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,31 @@
11
{
22
"name": "peavy-ratc",
3-
"version": "1.1.1",
3+
"version": "1.1.2",
44
"main": "src/main.js",
55
"type": "module",
66
"scripts": {
77
"test": "echo \"Error: no test specified\" && exit 1",
88
"format": "prettier --w .",
9-
"package": "companion-module-build"
9+
"package": "companion-module-build",
10+
"lint:raw": "eslint",
11+
"lint": "yarn lint:raw ."
1012
},
1113
"license": "MIT",
1214
"repository": {
1315
"type": "git",
1416
"url": "git+https://github.com/bitfocus/companion-module-peavy-ratc.git"
1517
},
1618
"dependencies": {
17-
"@companion-module/base": "~1.10.0"
19+
"@companion-module/base": "~1.11.3"
1820
},
1921
"devDependencies": {
20-
"@companion-module/tools": "^2.0.0",
21-
"prettier": "^3.3.3"
22+
"@companion-module/tools": "^2.1.1",
23+
"eslint": "^9.19.0",
24+
"prettier": "^3.4.2"
2225
},
23-
"prettier": "@companion-module/tools/.prettierrc.json"
26+
"engines": {
27+
"node": "^22.13"
28+
},
29+
"prettier": "@companion-module/tools/.prettierrc.json",
30+
"packageManager": "[email protected]"
2431
}

0 commit comments

Comments
 (0)