Skip to content

Commit 6f414e3

Browse files
committed
chore: fix license script
1 parent cf3afe2 commit 6f414e3

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

packages/ui/client/auto-imports.d.ts

+11-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@ declare global {
1919
const createGlobalState: typeof import('@vueuse/core')['createGlobalState']
2020
const createInjectionState: typeof import('@vueuse/core')['createInjectionState']
2121
const createReactiveFn: typeof import('@vueuse/core')['createReactiveFn']
22+
const createReusableTemplate: typeof import('@vueuse/core')['createReusableTemplate']
2223
const createSharedComposable: typeof import('@vueuse/core')['createSharedComposable']
24+
const createTemplatePromise: typeof import('@vueuse/core')['createTemplatePromise']
2325
const createUnrefFn: typeof import('@vueuse/core')['createUnrefFn']
2426
const customRef: typeof import('vue')['customRef']
2527
const debouncedRef: typeof import('@vueuse/core')['debouncedRef']
@@ -89,8 +91,9 @@ declare global {
8991
const throttledWatch: typeof import('@vueuse/core')['throttledWatch']
9092
const toRaw: typeof import('vue')['toRaw']
9193
const toReactive: typeof import('@vueuse/core')['toReactive']
92-
const toRef: typeof import('vue')['toRef']
94+
const toRef: typeof import('@vueuse/core')['toRef']
9395
const toRefs: typeof import('vue')['toRefs']
96+
const toValue: typeof import('@vueuse/core')['toValue']
9497
const triggerRef: typeof import('vue')['triggerRef']
9598
const tryOnBeforeMount: typeof import('@vueuse/core')['tryOnBeforeMount']
9699
const tryOnBeforeUnmount: typeof import('@vueuse/core')['tryOnBeforeUnmount']
@@ -101,11 +104,14 @@ declare global {
101104
const unrefElement: typeof import('@vueuse/core')['unrefElement']
102105
const until: typeof import('@vueuse/core')['until']
103106
const useActiveElement: typeof import('@vueuse/core')['useActiveElement']
107+
const useAnimate: typeof import('@vueuse/core')['useAnimate']
108+
const useArrayDifference: typeof import('@vueuse/core')['useArrayDifference']
104109
const useArrayEvery: typeof import('@vueuse/core')['useArrayEvery']
105110
const useArrayFilter: typeof import('@vueuse/core')['useArrayFilter']
106111
const useArrayFind: typeof import('@vueuse/core')['useArrayFind']
107112
const useArrayFindIndex: typeof import('@vueuse/core')['useArrayFindIndex']
108113
const useArrayFindLast: typeof import('@vueuse/core')['useArrayFindLast']
114+
const useArrayIncludes: typeof import('@vueuse/core')['useArrayIncludes']
109115
const useArrayJoin: typeof import('@vueuse/core')['useArrayJoin']
110116
const useArrayMap: typeof import('@vueuse/core')['useArrayMap']
111117
const useArrayReduce: typeof import('@vueuse/core')['useArrayReduce']
@@ -192,6 +198,8 @@ declare global {
192198
const useOnline: typeof import('@vueuse/core')['useOnline']
193199
const usePageLeave: typeof import('@vueuse/core')['usePageLeave']
194200
const useParallax: typeof import('@vueuse/core')['useParallax']
201+
const useParentElement: typeof import('@vueuse/core')['useParentElement']
202+
const usePerformanceObserver: typeof import('@vueuse/core')['usePerformanceObserver']
195203
const usePermission: typeof import('@vueuse/core')['usePermission']
196204
const usePointer: typeof import('@vueuse/core')['usePointer']
197205
const usePointerLock: typeof import('@vueuse/core')['usePointerLock']
@@ -259,8 +267,10 @@ declare global {
259267
const watchArray: typeof import('@vueuse/core')['watchArray']
260268
const watchAtMost: typeof import('@vueuse/core')['watchAtMost']
261269
const watchDebounced: typeof import('@vueuse/core')['watchDebounced']
270+
const watchDeep: typeof import('@vueuse/core')['watchDeep']
262271
const watchEffect: typeof import('vue')['watchEffect']
263272
const watchIgnorable: typeof import('@vueuse/core')['watchIgnorable']
273+
const watchImmediate: typeof import('@vueuse/core')['watchImmediate']
264274
const watchOnce: typeof import('@vueuse/core')['watchOnce']
265275
const watchPausable: typeof import('@vueuse/core')['watchPausable']
266276
const watchPostEffect: typeof import('vue')['watchPostEffect']

packages/vitest/LICENSE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,7 @@ Repository: https://github.com/debitoor/chai-subset.git
396396

397397
> The MIT License (MIT)
398398
>
399-
> Copyright (c) 2014
399+
> Copyright (c) 2014
400400
>
401401
> Permission is hereby granted, free of charge, to any person obtaining a copy
402402
> of this software and associated documentation files (the "Software"), to deal

packages/vitest/rollup.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ function licensePlugin() {
215215
.trim()
216216
.replace(/(\r\n|\r)/gm, '\n')
217217
.split('\n')
218-
.map(line => `> ${line}`)
218+
.map(line => line ? `> ${line}` : '>')
219219
.join('\n')
220220
}\n`
221221
}

0 commit comments

Comments
 (0)