Karsten Hassel 2024-06-11 06:54:17 +02:00 committed by GitHub
parent 4bd66cb121
commit 63324454a9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 505 additions and 557 deletions

View File

@ -69,7 +69,7 @@ For more info, please read the following post: [A New Chapter for MagicMirror: T
- added message in case where config.js is missing the module.export line PR #3383 - added message in case where config.js is missing the module.export line PR #3383
- Fixed an issue where recurring events could extend past their recurrence end date (#3393) - Fixed an issue where recurring events could extend past their recurrence end date (#3393)
- Don't display any `npm WARN <....>` on install (#3399) - Don't display any `npm WARN <....>` on install (#3399)
- Fixed move suncalc dependency to production from dev, as it is used by clock module - [chore] Moved suncalc dependency to production from dev, as it is used by clock module
- [compliments] Fix mirror not responding anymore when no compliments are to be shown (#3385) - [compliments] Fix mirror not responding anymore when no compliments are to be shown (#3385)
- [chore] Fixed mastermerge workflow (#3415) - [chore] Fixed mastermerge workflow (#3415)
@ -105,7 +105,7 @@ This release also marks the latest release by Michael Teeuw. For more info, plea
- Update electron to v27 and update other dependencies as well as github actions - Update electron to v27 and update other dependencies as well as github actions
- Update newsfeed: Use `html-to-text` instead of regex for transform description - Update newsfeed: Use `html-to-text` instead of regex for transform description
- Review ESLint config (#3269) - Review ESLint config (#3269)
- Updated dependencies - Update dependencies
- Clock module: optionally display current moon phase in addition to rise/set times - Clock module: optionally display current moon phase in addition to rise/set times
- electron is now per default started without gpu, if needed it must be enabled with new env var `ELECTRON_ENABLE_GPU=1` on startup (#3226) - electron is now per default started without gpu, if needed it must be enabled with new env var `ELECTRON_ENABLE_GPU=1` on startup (#3226)
- Replace prettier by stylistic in ESLint config to lint JavaScript (and disable some rules for `config/config.js*` files) - Replace prettier by stylistic in ESLint config to lint JavaScript (and disable some rules for `config/config.js*` files)

1032
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -67,32 +67,32 @@
"module-alias": "^2.2.3", "module-alias": "^2.2.3",
"moment": "^2.30.1", "moment": "^2.30.1",
"node-ical": "^0.18.0", "node-ical": "^0.18.0",
"pm2": "^5.3.1", "pm2": "^5.4.0",
"socket.io": "^4.7.5", "socket.io": "^4.7.5",
"suncalc": "^1.9.0", "suncalc": "^1.9.0",
"systeminformation": "^5.22.7" "systeminformation": "^5.22.11"
}, },
"devDependencies": { "devDependencies": {
"@stylistic/eslint-plugin": "^1.8.0", "@stylistic/eslint-plugin": "^1.8.1",
"eslint-plugin-import": "^2.29.1", "eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.3.0", "eslint-plugin-jest": "^28.6.0",
"eslint-plugin-jsdoc": "^48.2.3", "eslint-plugin-jsdoc": "^48.2.9",
"eslint-plugin-package-json": "^0.13.1", "eslint-plugin-package-json": "^0.14.0",
"eslint-plugin-unicorn": "^52.0.0", "eslint-plugin-unicorn": "^53.0.0",
"express-basic-auth": "^1.2.1", "express-basic-auth": "^1.2.1",
"husky": "^9.0.11", "husky": "^9.0.11",
"jest": "^29.7.0", "jest": "^29.7.0",
"jsdom": "^24.0.0", "jsdom": "^24.1.0",
"lint-staged": "^15.2.2", "lint-staged": "^15.2.5",
"playwright": "^1.43.1", "playwright": "^1.44.1",
"prettier": "^3.2.5", "prettier": "^3.3.1",
"sinon": "^17.0.1", "sinon": "^17.0.1",
"stylelint": "^16.4.0", "stylelint": "^16.6.1",
"stylelint-config-standard": "^36.0.0", "stylelint-config-standard": "^36.0.0",
"stylelint-prettier": "^5.0.0" "stylelint-prettier": "^5.0.0"
}, },
"optionalDependencies": { "optionalDependencies": {
"electron": "^30.0.1" "electron": "^30.1.0"
}, },
"engines": { "engines": {
"node": ">=18" "node": ">=18"