Skip to content

Commit 2863aed

Browse files
committed
updated dependencies
1 parent 4457f35 commit 2863aed

File tree

5 files changed

+405
-432
lines changed

5 files changed

+405
-432
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
All notable changes to `@homebridge/plugin-ui-utils` will be documented in this file. This project tries to adhere to [Semantic Versioning](http://semver.org/).
44

5+
## BETA
6+
7+
### Changes
8+
9+
- fix: package.json not export `ui.interface` (#23) (@baranwang)
10+
- updated dependencies
11+
512
## v2.0.0 (2024-11-22)
613

714
### Notable Changes

eslint.config.js

+20-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,26 @@ export default antfu({
1111
'no-undef': 'error',
1212
'perfectionist/sort-exports': 'error',
1313
'perfectionist/sort-named-exports': 'error',
14-
'perfectionist/sort-named-imports': 'error',
14+
'perfectionist/sort-imports': [
15+
'error',
16+
{
17+
groups: [
18+
'type',
19+
'internal-type',
20+
['parent-type', 'sibling-type', 'index-type'],
21+
'builtin',
22+
'external',
23+
'internal',
24+
['parent', 'sibling', 'index'],
25+
'side-effect',
26+
'object',
27+
'unknown',
28+
],
29+
order: 'asc',
30+
type: 'natural',
31+
newlinesBetween: 'always',
32+
},
33+
],
1534
'quotes': ['error', 'single'],
1635
'sort-imports': 'off',
1736
'style/brace-style': ['error', '1tbs'],

examples/basic-ui-server/homebridge-ui/server.js

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import { createHash } from 'node:crypto'
2+
23
import { HomebridgePluginUiServer, RequestError } from '@homebridge/plugin-ui-utils'
34

45
class PluginUiServer extends HomebridgePluginUiServer {

0 commit comments

Comments
 (0)