Skip to content

Commit d4c3cce

Browse files
committed
chore: downgrade rolldown-vite to v7.0.11
1 parent dd7dcf5 commit d4c3cce

File tree

5 files changed

+1324
-191
lines changed

5 files changed

+1324
-191
lines changed

app/.eslint-auto-import.mjs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ export default {
1717
"MaybeRefOrGetter": true,
1818
"PropType": true,
1919
"Ref": true,
20+
"ShallowRef": true,
2021
"Slot": true,
2122
"Slots": true,
2223
"T": true,
@@ -34,12 +35,14 @@ export default {
3435
"getActivePinia": true,
3536
"getCurrentInstance": true,
3637
"getCurrentScope": true,
38+
"getCurrentWatcher": true,
3739
"h": true,
3840
"inject": true,
3941
"isProxy": true,
4042
"isReactive": true,
4143
"isReadonly": true,
4244
"isRef": true,
45+
"isShallow": true,
4346
"mapActions": true,
4447
"mapGetters": true,
4548
"mapState": true,

app/auto-imports.d.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,14 @@ declare global {
2424
const getActivePinia: typeof import('pinia')['getActivePinia']
2525
const getCurrentInstance: typeof import('vue')['getCurrentInstance']
2626
const getCurrentScope: typeof import('vue')['getCurrentScope']
27+
const getCurrentWatcher: typeof import('vue')['getCurrentWatcher']
2728
const h: typeof import('vue')['h']
2829
const inject: typeof import('vue')['inject']
2930
const isProxy: typeof import('vue')['isProxy']
3031
const isReactive: typeof import('vue')['isReactive']
3132
const isReadonly: typeof import('vue')['isReadonly']
3233
const isRef: typeof import('vue')['isRef']
34+
const isShallow: typeof import('vue')['isShallow']
3335
const mapActions: typeof import('pinia')['mapActions']
3436
const mapGetters: typeof import('pinia')['mapGetters']
3537
const mapState: typeof import('pinia')['mapState']
@@ -88,7 +90,7 @@ declare global {
8890
// for type re-export
8991
declare global {
9092
// @ts-ignore
91-
export type { Component, Slot, Slots, ComponentPublicInstance, ComputedRef, DirectiveBinding, ExtractDefaultPropTypes, ExtractPropTypes, ExtractPublicPropTypes, InjectionKey, PropType, Ref, MaybeRef, MaybeRefOrGetter, VNode, WritableComputedRef } from 'vue'
93+
export type { Component, Slot, Slots, ComponentPublicInstance, ComputedRef, DirectiveBinding, ExtractDefaultPropTypes, ExtractPropTypes, ExtractPublicPropTypes, InjectionKey, PropType, Ref, ShallowRef, MaybeRef, MaybeRefOrGetter, VNode, WritableComputedRef } from 'vue'
9294
import('vue')
9395
}
9496

@@ -115,12 +117,14 @@ declare module 'vue' {
115117
readonly getActivePinia: UnwrapRef<typeof import('pinia')['getActivePinia']>
116118
readonly getCurrentInstance: UnwrapRef<typeof import('vue')['getCurrentInstance']>
117119
readonly getCurrentScope: UnwrapRef<typeof import('vue')['getCurrentScope']>
120+
readonly getCurrentWatcher: UnwrapRef<typeof import('vue')['getCurrentWatcher']>
118121
readonly h: UnwrapRef<typeof import('vue')['h']>
119122
readonly inject: UnwrapRef<typeof import('vue')['inject']>
120123
readonly isProxy: UnwrapRef<typeof import('vue')['isProxy']>
121124
readonly isReactive: UnwrapRef<typeof import('vue')['isReactive']>
122125
readonly isReadonly: UnwrapRef<typeof import('vue')['isReadonly']>
123126
readonly isRef: UnwrapRef<typeof import('vue')['isRef']>
127+
readonly isShallow: UnwrapRef<typeof import('vue')['isShallow']>
124128
readonly mapActions: UnwrapRef<typeof import('pinia')['mapActions']>
125129
readonly mapGetters: UnwrapRef<typeof import('pinia')['mapGetters']>
126130
readonly mapState: UnwrapRef<typeof import('pinia')['mapState']>

app/package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"@fingerprintjs/fingerprintjs": "^4.6.2",
1919
"@formkit/auto-animate": "^0.8.2",
2020
"@simplewebauthn/browser": "^13.1.2",
21-
"@uozi-admin/curd": "^4.7.2",
21+
"@uozi-admin/curd": "^4.7.4",
2222
"@uozi-admin/request": "^2.8.4",
2323
"@vue/reactivity": "^3.5.18",
2424
"@vue/shared": "^3.5.18",
@@ -68,6 +68,7 @@
6868
"@types/lodash": "^4.17.20",
6969
"@types/nprogress": "^0.2.3",
7070
"@types/sortablejs": "^1.15.8",
71+
"@vitejs/plugin-legacy": "^7.2.1",
7172
"@vitejs/plugin-vue": "^6.0.1",
7273
"@vitejs/plugin-vue-jsx": "^5.0.1",
7374
"@vue/compiler-sfc": "^3.5.18",
@@ -82,7 +83,7 @@
8283
"unplugin-auto-import": "^20.0.0",
8384
"unplugin-vue-components": "^29.0.0",
8485
"unplugin-vue-define-options": "^1.5.5",
85-
"vite": "npm:rolldown-vite@7.1.0",
86+
"vite": "npm:rolldown-vite@7.0.11",
8687
"vite-plugin-inspect": "^11.3.2",
8788
"vite-svg-loader": "^5.1.0",
8889
"vue-tsc": "^3.0.5"

0 commit comments

Comments
 (0)