This repository was archived by the owner on Sep 30, 2023. It is now read-only.
File tree 2 files changed +10
-1
lines changed
2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change 59
59
with :
60
60
node-version : 14.x
61
61
62
+ - name : Setup cache
63
+ uses : actions/cache@v2
64
+ id : pnpm-cache
65
+ with :
66
+ path : ${{ (runner.os == 'Windows' && 'D:\.pnpm-store') || '~/.pnpm-store' }}
67
+ key : ${{ runner.os }}-${{ matrix.node-version }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
68
+ restore-keys : |
69
+ ${{ runner.os }}-${{ matrix.node-version }}-pnpm-
70
+
62
71
- name : Setup
63
72
run : npm i -g pnpm @antfu/ni
64
73
Original file line number Diff line number Diff line change @@ -19,9 +19,9 @@ declare module 'vue' {
19
19
AuthLayout : typeof import ( './src/components/layout/AuthLayout.vue' ) [ 'default' ]
20
20
'Mdi:checkboxMarkedOutline' : typeof import ( 'virtual:vite-icons/mdi/checkbox-marked-outline' ) [ 'default' ]
21
21
'Mdi:checkboxBlankOutline' : typeof import ( 'virtual:vite-icons/mdi/checkbox-blank-outline' ) [ 'default' ]
22
+ JamCloseCircleF : typeof import ( 'virtual:vite-icons/jam/close-circle-f' ) [ 'default' ]
22
23
'Ic:roundMenu' : typeof import ( 'virtual:vite-icons/ic/round-menu' ) [ 'default' ]
23
24
'Ic:roundAccountCircle' : typeof import ( 'virtual:vite-icons/ic/round-account-circle' ) [ 'default' ]
24
- JamCloseCircleF : typeof import ( 'virtual:vite-icons/jam/close-circle-f' ) [ 'default' ]
25
25
'Mdi:loading' : typeof import ( 'virtual:vite-icons/mdi/loading' ) [ 'default' ]
26
26
'Mdi:chevronDoubleLeft' : typeof import ( 'virtual:vite-icons/mdi/chevron-double-left' ) [ 'default' ]
27
27
'Mdi:chevronDoubleRight' : typeof import ( 'virtual:vite-icons/mdi/chevron-double-right' ) [ 'default' ]
You can’t perform that action at this time.
0 commit comments