Skip to content

Commit 4db12d3

Browse files
authored
version bump (#93)
1 parent 842db87 commit 4db12d3

File tree

5 files changed

+279
-242
lines changed

5 files changed

+279
-242
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
matrix:
1515
# the Node.js versions to build on
16-
node-version: [16.x, 18.x, 19.x, 20.x]
16+
node-version: [18.x, 20.x]
1717

1818
steps:
1919
- uses: actions/checkout@v3

.github/workflows/publish.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- uses: actions/checkout@v3
13-
- name: Use Node.js 18.0
13+
- name: Use Node.js 20.0
1414
uses: actions/setup-node@v3
1515
with:
16-
node-version: 18.0
16+
node-version: 20.0
1717
cache: "npm"
1818
- name: Install dependencies
1919
run: npm install
@@ -35,10 +35,10 @@ jobs:
3535
name: NPM
3636
steps:
3737
- uses: actions/checkout@v3
38-
- name: Use Node.js 18.0
38+
- name: Use Node.js 20.0
3939
uses: actions/setup-node@v3
4040
with:
41-
node-version: 18.0
41+
node-version: 20.0
4242
cache: "npm"
4343
registry-url: https://registry.npmjs.org/
4444
- name: Install dependencies

.vscode/settings.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
],
88
"editor.defaultFormatter": "vscode.typescript-language-features",
99
"editor.codeActionsOnSave": {
10-
"source.fixAll.eslint": true
10+
"source.fixAll.eslint": "explicit"
1111
},
1212
"eslint.validate": ["typescript"],
1313
"eslint.options": {

package.json

+14-14
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"displayName": "Levoit Air Purifier",
55
"main": "dist/index.js",
66
"license": "Apache-2.0",
7-
"version": "2.0.0",
7+
"version": "3.0.0",
88
"private": false,
99
"bugs": {
1010
"url": "https://github.com/RaresAil/homebridge-levoit-air-purifier/issues"
@@ -26,29 +26,29 @@
2626
"start": "npm run build && nodemon"
2727
},
2828
"devDependencies": {
29-
"@types/async-lock": "^1.4.1",
30-
"@types/big.js": "^6.2.1",
31-
"@types/node": "^20.8.7",
32-
"@typescript-eslint/eslint-plugin": "^6.8.0",
33-
"@typescript-eslint/parser": "^6.8.0",
34-
"eslint": "^8.51.0",
35-
"homebridge": "^1.6.1",
36-
"nodemon": "^3.0.1",
29+
"@types/async-lock": "^1.4.2",
30+
"@types/big.js": "^6.2.2",
31+
"@types/node": "^20.12.7",
32+
"@typescript-eslint/eslint-plugin": "^7.6.0",
33+
"@typescript-eslint/parser": "^7.6.0",
34+
"eslint": "^8.56.0",
35+
"homebridge": "^1.7.0",
36+
"nodemon": "^3.1.0",
3737
"rimraf": "^5.0.5",
38-
"ts-node": "^10.9.1",
39-
"typescript": "^5.2.2"
38+
"ts-node": "^10.9.2",
39+
"typescript": "^5.4.5"
4040
},
4141
"engines": {
4242
"homebridge": ">=1.3.5",
4343
"node": ">=16"
4444
},
4545
"dependencies": {
46-
"async-lock": "^1.4.0",
47-
"axios": "^1.5.1",
46+
"async-lock": "^1.4.1",
47+
"axios": "^1.6.8",
4848
"big.js": "^6.2.1"
4949
},
5050
"resolutions": {
51-
"semver": "^7.5.2"
51+
"ip": "^1.1.9"
5252
},
5353
"keywords": [
5454
"homebridge-plugin",

0 commit comments

Comments
 (0)