Skip to content

Commit

Permalink
chore: update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
kazupon committed Jun 19, 2023
1 parent 3593d80 commit 7687a7c
Show file tree
Hide file tree
Showing 3 changed files with 428 additions and 468 deletions.
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,9 @@
"@textlint-rule/textlint-rule-no-unmatched-pair": "^1.0.7",
"@types/js-yaml": "^4.0.5",
"@types/jsdom": "^21.1.1",
"@types/node": "^18.16.13",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"@types/node": "^18.16.18",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"@vitest/coverage-c8": "^0.31.1",
"algoliasearch": "^4.9.0",
"api-docs-gen": "^0.4.0",
Expand All @@ -86,10 +86,10 @@
"bumpp": "^9.1.0",
"cross-env": "^7.0.3",
"esbuild-register": "^3.0.0",
"eslint": "^8.41.0",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.0",
"eslint-plugin-vue": "^9.13.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.15.0",
"execa": "^5.0.0",
"fixpack": "^4.0.0",
"globby": "^13.1.4",
Expand Down Expand Up @@ -132,8 +132,8 @@
"textlint-rule-unexpanded-acronym": "^1.2.4",
"textlint-rule-write-good": "^2.0.0",
"trash-cli": "^5.0.0",
"tslib": "^2.5.2",
"typescript": "^5.0.4",
"tslib": "^2.5.3",
"typescript": "^5.1.3",
"vitepress": "^1.0.0-alpha.76",
"vitest": "^0.31.1",
"vue": "3.3.4",
Expand Down
4 changes: 2 additions & 2 deletions packages/format-explorer/src/components/Editor.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import CssWorker from 'monaco-editor/esm/vs/language/css/css.worker?worker'
import HtmlWorker from 'monaco-editor/esm/vs/language/html/html.worker?worker'
import TsWorker from 'monaco-editor/esm/vs/language/typescript/ts.worker?worker'
import theme from '../theme'
import { debounce } from '../utils'
import { debounce as _debounce } from '../utils'
import type { PropType } from 'vue'
import type { CompileError } from '@intlify/message-compiler'
Expand Down Expand Up @@ -106,7 +106,7 @@ onMounted(() => {
window.addEventListener('resize', () => editor.layout())
const changeEmitter = props.debounce
? debounce(() => emit('change-model', editor.getValue()))
? _debounce(() => emit('change-model', editor.getValue()))
: () => emit('change-model', editor.getValue())
editor.onDidChangeModelContent(changeEmitter)
Expand Down
Loading

0 comments on commit 7687a7c

Please sign in to comment.