Skip to content

Commit 88cec9a

Browse files
committed
chore: update deps
1 parent f0b25b6 commit 88cec9a

File tree

117 files changed

+442
-772
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

117 files changed

+442
-772
lines changed

app/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
"vuedraggable": "^4.1.0"
5757
},
5858
"devDependencies": {
59-
"@antfu/eslint-config": "^4.13.0",
59+
"@antfu/eslint-config": "^4.13.1",
6060
"@iconify-json/fa": "1.2.1",
6161
"@iconify-json/tabler": "^1.2.17",
6262
"@iconify/tools": "^4.1.2",
@@ -72,7 +72,7 @@
7272
"@vue/tsconfig": "^0.7.0",
7373
"ace-builds": "^1.41.0",
7474
"autoprefixer": "^10.4.21",
75-
"eslint": "9.26.0",
75+
"eslint": "^9.27.0",
7676
"eslint-plugin-sonarjs": "^3.0.2",
7777
"less": "^4.3.0",
7878
"postcss": "^8.5.3",

app/pnpm-lock.yaml

Lines changed: 245 additions & 576 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/src/App.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<script setup lang="ts">
2-
import loadTranslations from '@/api/translations'
3-
import gettext from '@/gettext'
4-
import { useSettingsStore, useUserStore } from '@/pinia'
52
import { theme } from 'ant-design-vue'
63
import en_US from 'ant-design-vue/es/locale/en_US'
74
import zh_CN from 'ant-design-vue/es/locale/zh_CN'
85
import zh_TW from 'ant-design-vue/es/locale/zh_TW'
6+
import loadTranslations from '@/api/translations'
7+
import gettext from '@/gettext'
8+
import { useSettingsStore, useUserStore } from '@/pinia'
99
1010
const route = useRoute()
1111
const router = useRouter()

app/src/api/cert.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1+
import type { AutoCertChallengeMethod } from './auto_cert'
12
import type { AcmeUser } from '@/api/acme_user'
23
import type { ModelBase } from '@/api/curd'
34
import type { DnsCredential } from '@/api/dns_credential'
45
import type { PrivateKeyType } from '@/constants'
5-
import type { AutoCertChallengeMethod } from './auto_cert'
66
import Curd from '@/api/curd'
77

88
export interface Cert extends ModelBase {

app/src/api/passkey.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import type { ModelBase } from '@/api/curd'
21
import type { RegistrationResponseJSON } from '@simplewebauthn/browser'
2+
import type { ModelBase } from '@/api/curd'
33
import http from '@/lib/http'
44

55
export interface Passkey extends ModelBase {

app/src/api/stream.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1+
import type { EnvGroup } from './env_group'
12
import type { NgxConfig } from '@/api/ngx'
23
import type { ChatComplicationMessage } from '@/api/openai'
3-
import type { EnvGroup } from './env_group'
44
import Curd from '@/api/curd'
55
import http from '@/lib/http'
66

app/src/components/AutoCertForm/DNSChallenge.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<script setup lang="ts">
2-
import type { AutoCertOptions, DNSProvider } from '@/api/auto_cert'
32
import type { SelectProps } from 'ant-design-vue'
43
import type { Ref } from 'vue'
4+
import type { AutoCertOptions, DNSProvider } from '@/api/auto_cert'
55
import auto_cert from '@/api/auto_cert'
66
import dns_credential from '@/api/dns_credential'
77

app/src/components/Chart/AreaChart.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<script setup lang="ts">
2-
import type { Series } from '@/components/Chart/types'
32
import type { Ref } from 'vue'
4-
import { useSettingsStore } from '@/pinia'
3+
import type { Series } from '@/components/Chart/types'
54
import { storeToRefs } from 'pinia'
65
import VueApexCharts from 'vue3-apexcharts'
6+
import { useSettingsStore } from '@/pinia'
77
88
const { series, max, yFormatter } = defineProps<{
99
series: Series[]

app/src/components/Chart/RadialBarChart.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<script setup lang="ts">
22
import type { Series } from '@/components/Chart/types'
33
4-
import { useSettingsStore } from '@/pinia'
54
import { storeToRefs } from 'pinia'
65
import VueApexCharts from 'vue3-apexcharts'
6+
import { useSettingsStore } from '@/pinia'
77
88
const props = defineProps<{
99
series: Series[] | number[]

app/src/components/ChatGPT/ChatGPT.vue

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
<script setup lang="ts">
22
import type { ChatComplicationMessage } from '@/api/openai'
3-
import openai from '@/api/openai'
4-
import ChatGPT_logo from '@/assets/svg/ChatGPT_logo.svg?component'
5-
import { urlJoin } from '@/lib/helper'
6-
import { useSettingsStore, useUserStore } from '@/pinia'
73
import Icon, { SendOutlined } from '@ant-design/icons-vue'
84
import hljs from 'highlight.js'
95
import nginx from 'highlight.js/lib/languages/nginx'
10-
116
import { Marked } from 'marked'
127
import { markedHighlight } from 'marked-highlight'
138
import { storeToRefs } from 'pinia'
9+
import openai from '@/api/openai'
10+
11+
import ChatGPT_logo from '@/assets/svg/ChatGPT_logo.svg?component'
12+
import { urlJoin } from '@/lib/helper'
13+
import { useSettingsStore, useUserStore } from '@/pinia'
1414
import 'highlight.js/styles/vs2015.css'
1515
1616
const props = defineProps<{

0 commit comments

Comments
 (0)