Skip to content

Commit c51fd34

Browse files
committed
try to fix type errors
1 parent b9620bd commit c51fd34

File tree

5 files changed

+5
-10
lines changed

5 files changed

+5
-10
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@
8888
"sass": "^1.57.1",
8989
"start-server-and-test": "^2.0.4",
9090
"storybook": "^8.1.11",
91-
"typescript": "~5.4.0",
91+
"typescript": "^5.4.0",
9292
"vite": "^5.3.1",
9393
"vite-bundle-analyzer": "^0.15.2",
9494
"vite-plugin-vue-devtools": "^7.6.8",

src/shared/ui/code-snippet/code-snippet.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<script lang="ts" setup>
22
import highlightPlugin from '@highlightjs/vue-plugin'
3-
import isString from 'lodash.isString'
3+
import isString from 'lodash.isstring'
44
import { ref, computed } from 'vue'
55
import { IconSvg } from '../icon-svg'
66

src/shared/ui/preview-card/preview-card-header.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<script lang="ts" setup>
2-
import isString from 'lodash.isString'
2+
import isString from 'lodash.isstring'
33
import { computed } from 'vue'
44
import { type EventType, type NormalizedEvent, RouteName } from '../../types'
55
import { IconSvg } from '../icon-svg'

src/shared/ui/value-dump/value-dump.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<script lang="ts" setup>
2-
import isString from 'lodash.isString'
2+
import isString from 'lodash.isstring'
33
import { computed, onMounted } from 'vue'
44
import { callSfDump } from '../../lib/vendor/sf-dumper'
55
import { CodeSnippet } from '../code-snippet'

yarn.lock

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6905,16 +6905,11 @@ typed-array-length@^1.0.7:
69056905
possible-typed-array-names "^1.0.0"
69066906
reflect.getprototypeof "^1.0.6"
69076907

6908-
typescript@^5.0.0:
6908+
typescript@^5.0.0, typescript@^5.4.0:
69096909
version "5.7.2"
69106910
resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.7.2.tgz#3169cf8c4c8a828cde53ba9ecb3d2b1d5dd67be6"
69116911
integrity sha512-i5t66RHxDvVN40HfDd1PsEThGNnlMCMT3jMUuoh9/0TaqWevNontacunWyN02LA9/fIbEWlcHZcgTKb9QoaLfg==
69126912

6913-
typescript@~5.4.0:
6914-
version "5.4.5"
6915-
resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.4.5.tgz#42ccef2c571fdbd0f6718b1d1f5e6e5ef006f611"
6916-
integrity sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==
6917-
69186913
ufo@^1.5.4:
69196914
version "1.5.4"
69206915
resolved "https://registry.yarnpkg.com/ufo/-/ufo-1.5.4.tgz#16d6949674ca0c9e0fbbae1fa20a71d7b1ded754"

0 commit comments

Comments
 (0)