Skip to content

Commit

Permalink
version bump (#93)
Browse files Browse the repository at this point in the history
  • Loading branch information
RaresAil authored Apr 12, 2024
1 parent 842db87 commit 4db12d3
Show file tree
Hide file tree
Showing 5 changed files with 279 additions and 242 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
matrix:
# the Node.js versions to build on
node-version: [16.x, 18.x, 19.x, 20.x]
node-version: [18.x, 20.x]

steps:
- uses: actions/checkout@v3
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js 18.0
- name: Use Node.js 20.0
uses: actions/setup-node@v3
with:
node-version: 18.0
node-version: 20.0
cache: "npm"
- name: Install dependencies
run: npm install
Expand All @@ -35,10 +35,10 @@ jobs:
name: NPM
steps:
- uses: actions/checkout@v3
- name: Use Node.js 18.0
- name: Use Node.js 20.0
uses: actions/setup-node@v3
with:
node-version: 18.0
node-version: 20.0
cache: "npm"
registry-url: https://registry.npmjs.org/
- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
],
"editor.defaultFormatter": "vscode.typescript-language-features",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
"source.fixAll.eslint": "explicit"
},
"eslint.validate": ["typescript"],
"eslint.options": {
Expand Down
28 changes: 14 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"displayName": "Levoit Air Purifier",
"main": "dist/index.js",
"license": "Apache-2.0",
"version": "2.0.0",
"version": "3.0.0",
"private": false,
"bugs": {
"url": "https://github.com/RaresAil/homebridge-levoit-air-purifier/issues"
Expand All @@ -26,29 +26,29 @@
"start": "npm run build && nodemon"
},
"devDependencies": {
"@types/async-lock": "^1.4.1",
"@types/big.js": "^6.2.1",
"@types/node": "^20.8.7",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"eslint": "^8.51.0",
"homebridge": "^1.6.1",
"nodemon": "^3.0.1",
"@types/async-lock": "^1.4.2",
"@types/big.js": "^6.2.2",
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"eslint": "^8.56.0",
"homebridge": "^1.7.0",
"nodemon": "^3.1.0",
"rimraf": "^5.0.5",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"engines": {
"homebridge": ">=1.3.5",
"node": ">=16"
},
"dependencies": {
"async-lock": "^1.4.0",
"axios": "^1.5.1",
"async-lock": "^1.4.1",
"axios": "^1.6.8",
"big.js": "^6.2.1"
},
"resolutions": {
"semver": "^7.5.2"
"ip": "^1.1.9"
},
"keywords": [
"homebridge-plugin",
Expand Down
Loading

0 comments on commit 4db12d3

Please sign in to comment.