iobroker.hassemu 1.0.2 → 1.0.3

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/README.md CHANGED
@@ -113,13 +113,16 @@ http://<IP>:8123/health
113
113
 
114
114
  ## Changelog
115
115
 
116
+ ### 1.0.3 (2026-04-12)
117
+ - Remove unused devDependencies, add `no-floating-promises` lint rule, remove redundant CI checkout
118
+
116
119
  ### 1.0.2 (2026-04-08)
117
120
  - Remove build/ from git tracking, fix .gitignore, clean up keywords and metadata
118
121
 
119
122
  ### 1.0.0 (2026-04-08)
120
123
  - Renamed from homeassistant-bridge to hassemu
121
124
 
122
- Older changelog: [CHANGELOG_OLD.md](CHANGELOG_OLD.md)
125
+ Older entries have been moved to [CHANGELOG_OLD.md](CHANGELOG_OLD.md).
123
126
 
124
127
  ---
125
128
 
package/io-package.json CHANGED
@@ -1,8 +1,21 @@
1
1
  {
2
2
  "common": {
3
3
  "name": "hassemu",
4
- "version": "1.0.2",
4
+ "version": "1.0.3",
5
5
  "news": {
6
+ "1.0.3": {
7
+ "en": "Remove unused devDependencies, add no-floating-promises lint rule, remove redundant CI checkout",
8
+ "de": "Ungenutzte devDependencies entfernt, no-floating-promises Lint-Regel hinzugefügt, redundanten CI-Checkout entfernt",
9
+ "ru": "Удалены неиспользуемые devDependencies, добавлено правило lint no-floating-promises, удален избыточный checkout в CI",
10
+ "pt": "Removidas devDependencies não utilizadas, adicionada regra lint no-floating-promises, removido checkout redundante no CI",
11
+ "nl": "Ongebruikte devDependencies verwijderd, no-floating-promises lintregel toegevoegd, redundante CI-checkout verwijderd",
12
+ "fr": "Suppression des devDependencies inutilisées, ajout de la règle lint no-floating-promises, suppression du checkout CI redondant",
13
+ "it": "Rimosse devDependencies inutilizzate, aggiunta regola lint no-floating-promises, rimosso checkout CI ridondante",
14
+ "es": "Eliminadas devDependencies no utilizadas, añadida regla lint no-floating-promises, eliminado checkout CI redundante",
15
+ "pl": "Usunięto nieużywane devDependencies, dodano regułę lint no-floating-promises, usunięto nadmiarowy checkout w CI",
16
+ "uk": "Видалено невикористані devDependencies, додано правило лінтингу no-floating-promises, видалено зайвий checkout у CI",
17
+ "zh-cn": "移除未使用的开发依赖,添加 no-floating-promises 检查规则,移除冗余的 CI checkout"
18
+ },
6
19
  "1.0.2": {
7
20
  "en": "Remove build/ from git tracking, fix .gitignore, clean up keywords and metadata",
8
21
  "de": "build/ aus Git-Tracking entfernt, .gitignore korrigiert, Keywords und Metadaten bereinigt",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iobroker.hassemu",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "Emulates a minimal Home Assistant server so devices expecting a Home Assistant dashboard can display any custom web URL.",
5
5
  "author": {
6
6
  "name": "krobi",
@@ -46,8 +46,6 @@
46
46
  "@types/iobroker": "npm:@iobroker/types@^7.1.0",
47
47
  "@types/node": "^25.5.0",
48
48
  "rimraf": "^6.1.3",
49
- "source-map-support": "^0.5.21",
50
- "ts-node": "^10.9.2",
51
49
  "typescript": "~5.9.3"
52
50
  },
53
51
  "main": "build/main.js",
@@ -62,7 +60,7 @@
62
60
  "build": "build-adapter ts",
63
61
  "watch": "build-adapter ts --watch",
64
62
  "check": "tsc --noEmit",
65
- "test:ts": "npm run build:test && mocha --exit \"build/test/testConstants.js\" \"build/test/testMdns.js\" \"build/test/testWebServer.js\"",
63
+ "test:ts": "npm run build:test && mocha --exit \"build/test/test*.js\"",
66
64
  "test:package": "mocha test/package --exit",
67
65
  "test:integration": "mocha test/integration --exit",
68
66
  "test": "npm run build && npm run test:ts && npm run test:package",