Skip to content

Commit 85dbd58

Browse files
authored
update node packages (#16)
1 parent 769c3ae commit 85dbd58

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@
1717
},
1818
"license": "AGPL-3.0-or-later",
1919
"devDependencies": {
20-
"@antfu/eslint-config": "^2.25.1",
20+
"@antfu/eslint-config": "^3.9.1",
2121
"@types/textarea-caret": "^3.0.3",
2222
"error-stack-parser": "^2.1.4",
23-
"esbuild": "^0.23.0",
24-
"eslint": "^9.9.0",
23+
"esbuild": "^0.24.0",
24+
"eslint": "^9.15.0",
2525
"textarea-caret": "^3.1.0",
26-
"typescript": "^5.5.4"
26+
"typescript": "^5.6.3"
2727
}
2828
}

page/focus.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import Module from './module'
21
import { resetPreedit } from './client'
2+
import Module from './module'
33

44
type Input = HTMLInputElement | HTMLTextAreaElement
55

page/index.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
import Module from './module'
2-
import { blur, clickPanel, focus } from './focus'
3-
import { jsKeyToFcitxString, keyEvent } from './keycode'
1+
import { activateMenuAction, getMenuActions } from './action'
42
import { commit, hidePanel, placePanel, setPreedit } from './client'
5-
import { currentInputMethod, getAllInputMethods, getInputMethods, setCurrentInputMethod, setInputMethods } from './input-method'
63
import { getAddons, getConfig, setConfig } from './config'
7-
import { activateMenuAction, getMenuActions } from './action'
4+
import { blur, clickPanel, focus } from './focus'
5+
import { currentInputMethod, getAllInputMethods, getInputMethods, setCurrentInputMethod, setInputMethods } from './input-method'
6+
import { jsKeyToFcitxString, keyEvent } from './keycode'
7+
import Module from './module'
88

99
let res: (value: any) => void
1010

page/keycode.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import Module from './module'
21
import { getInputElement } from './focus'
2+
import Module from './module'
33

44
function extract(event: KeyboardEvent): [string, string, number] | undefined {
55
const { key, code, shiftKey, altKey, ctrlKey, metaKey } = event

0 commit comments

Comments
 (0)