Skip to content

Commit

Permalink
lodash.debounceを削除 (VOICEVOX#795)
Browse files Browse the repository at this point in the history
* ♻️ debounce関数はquasarにもあるので、そちらを使用するよう変更

* ➖ lodash.debounceを削除
  • Loading branch information
MT224244 committed Apr 27, 2022
1 parent f48c89b commit 2088b1e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 19 deletions.
18 changes: 2 additions & 16 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 0 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@
"electron-window-state": "5.0.3",
"encoding-japanese": "1.0.30",
"immer": "9.0.2",
"lodash.debounce": "4.0.8",
"markdown-it": "12.0.4",
"quasar": "2.3.4",
"semver": "7.3.5",
Expand All @@ -55,7 +54,6 @@
"@types/chai": "4.2.18",
"@types/electron-devtools-installer": "2.2.0",
"@types/encoding-japanese": "1.0.18",
"@types/lodash.debounce": "^4.0.6",
"@types/markdown-it": "12.2.0",
"@types/mocha": "5.2.7",
"@types/mousetrap": "1.6.8",
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/ipcMessageReceiverPlugin.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Plugin } from "vue";
import { Store } from "@/store/vuex";
import { AllActions, AllGetters, AllMutations, State } from "@/store/type";
import { debounce } from "lodash";
import { debounce } from "quasar";

export const ipcMessageReceiver: Plugin = {
install: (
Expand Down

0 comments on commit 2088b1e

Please sign in to comment.