Skip to content

Commit

Permalink
chore: update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
antfu committed Nov 9, 2022
1 parent 65f4341 commit 71b08cd
Show file tree
Hide file tree
Showing 11 changed files with 826 additions and 784 deletions.
2 changes: 2 additions & 0 deletions meta/packages.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ export const packages: PackageManifest[] = [
'@vueuse/shared',
'fuse.js',
'async-validator',
'idb-keyval',
],
globals: {
'axios': 'axios',
Expand All @@ -100,6 +101,7 @@ export const packages: PackageManifest[] = [
'fuse.js': 'Fuse',
'change-case': 'changeCase',
'async-validator': 'AsyncValidator',
'idb-keyval': 'idbKeyval',
},
},
{
Expand Down
56 changes: 28 additions & 28 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,23 +35,23 @@
"watch": "esno scripts/build.ts --watch"
},
"devDependencies": {
"@antfu/eslint-config": "^0.27.0",
"@antfu/ni": "^0.18.2",
"@iconify/json": "^2.1.122",
"@rollup/plugin-json": "^5.0.0",
"@rollup/plugin-replace": "^5.0.0",
"@antfu/eslint-config": "^0.29.4",
"@antfu/ni": "^0.18.5",
"@iconify/json": "^2.1.134",
"@rollup/plugin-json": "^5.0.1",
"@rollup/plugin-replace": "^5.0.1",
"@type-challenges/utils": "^0.1.1",
"@types/fs-extra": "^9.0.13",
"@types/js-yaml": "^4.0.5",
"@types/md5": "^2.3.2",
"@types/node": "^18.11.0",
"@types/node": "^18.11.9",
"@types/prettier": "^2.7.1",
"@types/semver": "^7.3.12",
"@types/semver": "^7.3.13",
"@types/sharp": "^0.31.0",
"@vitest/coverage-c8": "^0.24.3",
"@vitest/ui": "^0.24.3",
"@vitest/coverage-c8": "^0.25.1",
"@vitest/ui": "^0.25.1",
"@vue/compiler-sfc": "^3.2.41",
"@vue/test-utils": "^2.1.0",
"@vue/test-utils": "^2.2.1",
"@vueuse/core": "workspace:*",
"@vueuse/integrations": "workspace:*",
"@vueuse/math": "workspace:*",
Expand All @@ -62,46 +62,46 @@
"consola": "^2.15.3",
"cross-env": "^7.0.3",
"esbuild-register": "^3.3.3",
"eslint": "^8.25.0",
"eslint": "^8.27.0",
"esno": "^0.16.3",
"export-size": "^0.5.2",
"fake-indexeddb": "^4.0.0",
"fast-glob": "^3.2.12",
"firebase": "^9.12.1",
"firebase": "^9.13.0",
"fs-extra": "^10.1.0",
"fuse.js": "^6.6.2",
"google-font-installer": "^1.2.0",
"gray-matter": "^4.0.3",
"js-yaml": "^4.1.0",
"jsdom": "^20.0.1",
"jsdom": "^20.0.2",
"lint-staged": "^13.0.3",
"markdown-table": "^3.0.2",
"md5": "^2.3.0",
"msw": "^0.47.4",
"msw": "^0.48.0",
"node-fetch": "^3.2.10",
"ohmyfetch": "^0.4.19",
"pnpm": "^7.13.5",
"ohmyfetch": "^0.4.21",
"pnpm": "^7.14.2",
"postcss": "^8.4.18",
"postcss-nested": "^6.0.0",
"prettier": "^2.7.1",
"prism-theme-vars": "^0.2.4",
"remove-markdown": "^0.5.0",
"rimraf": "^3.0.2",
"rollup": "^3.2.2",
"rollup": "^3.2.5",
"rollup-plugin-dts": "^5.0.0",
"rollup-plugin-esbuild": "^4.10.1",
"sharp": "^0.31.1",
"rollup-plugin-esbuild": "^5.0.0",
"sharp": "^0.31.2",
"simple-git": "^3.14.1",
"simple-git-hooks": "^2.8.0",
"simple-git-hooks": "^2.8.1",
"typescript": "4.8.4",
"unocss": "^0.45.29",
"unplugin-icons": "^0.14.12",
"unplugin-vue-components": "^0.22.8",
"vite": "^3.1.8",
"vite-plugin-inspect": "^0.7.5",
"vite-plugin-pwa": "^0.13.1",
"vitepress": "^1.0.0-alpha.21",
"vitest": "^0.24.3",
"unocss": "^0.46.3",
"unplugin-icons": "^0.14.13",
"unplugin-vue-components": "^0.22.9",
"vite": "^3.2.3",
"vite-plugin-inspect": "^0.7.7",
"vite-plugin-pwa": "^0.13.3",
"vitepress": "^1.0.0-alpha.28",
"vitest": "^0.25.1",
"vue": "^3.2.41",
"vue2": "npm:vue@^2.7.10"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/core/useMemoize/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ const getMapVue2Compat = <Value>(): UseMemoizeCache<CacheKey, Value> => {
/**
* Memoized function
*/
export interface UseMemoizeReturn <Result, Args extends unknown[]> {
export interface UseMemoizeReturn<Result, Args extends unknown[]> {
/**
* Get result from cache or call memoized function
*/
Expand Down
2 changes: 1 addition & 1 deletion packages/core/useVirtualList/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export interface UseVirtualListReturn<T> {
}>
}

export function useVirtualList <T = any>(list: MaybeRef<T[]>, options: UseVirtualListOptions): UseVirtualListReturn<T> {
export function useVirtualList<T = any>(list: MaybeRef<T[]>, options: UseVirtualListOptions): UseVirtualListReturn<T> {
const { containerStyle, wrapperProps, scrollTo, calculateRange, currentList, containerRef } = 'itemHeight' in options
? useVerticalVirtualList(options, list)
: useHorizontalVirtualList(options, list)
Expand Down
2 changes: 1 addition & 1 deletion packages/math/createGenericProjection/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export type ProjectorFunction<F, T> = (input: F, from: readonly [F, F], to: read

export type UseProjection<F, T> = (input: MaybeComputedRef<F>) => ComputedRef<T>

export function createGenericProjection<F=number, T=number>(
export function createGenericProjection<F = number, T = number>(
fromDomain: MaybeComputedRef<readonly [F, F]>,
toDomain: MaybeComputedRef<readonly [T, T]>,
projector: ProjectorFunction<F, T>,
Expand Down
6 changes: 3 additions & 3 deletions packages/nuxt/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,14 @@
"nuxt": "^3.0.0-rc.9"
},
"dependencies": {
"@nuxt/kit": "^3.0.0-rc.11",
"@nuxt/kit": "^3.0.0-rc.13",
"@vueuse/core": "workspace:*",
"@vueuse/metadata": "workspace:*",
"local-pkg": "^0.4.2",
"vue-demi": "*"
},
"devDependencies": {
"@nuxt/schema": "^3.0.0-rc.11",
"unimport": "^0.6.8"
"@nuxt/schema": "^3.0.0-rc.13",
"unimport": "^0.7.0"
}
}
2 changes: 1 addition & 1 deletion packages/router/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,6 @@
"vue-demi": "*"
},
"devDependencies": {
"vue-router": "^4.1.5"
"vue-router": "^4.1.6"
}
}
2 changes: 1 addition & 1 deletion packages/shared/reactifyObject/index.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import type { Reactified, ReactifyOptions } from '../reactify'
import { reactify } from '../reactify'

export type ReactifyNested<T, Keys extends keyof T = keyof T, S extends boolean= true> = { [K in Keys]: T[K] extends (...args: any[]) => any ? Reactified<T[K], S> : T[K] }
export type ReactifyNested<T, Keys extends keyof T = keyof T, S extends boolean = true> = { [K in Keys]: T[K] extends (...args: any[]) => any ? Reactified<T[K], S> : T[K] }

export interface ReactifyObjectOptions<T extends boolean> extends ReactifyOptions<T> {
/**
Expand Down
2 changes: 1 addition & 1 deletion playgrounds/nuxt3/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@
"@vueuse/core": "../../packages/core",
"@vueuse/integrations": "../../packages/integrations",
"@vueuse/shared": "../../packages/shared",
"nuxt": "^3.0.0-rc.11"
"nuxt": "^3.0.0-rc.13"
}
}
4 changes: 2 additions & 2 deletions playgrounds/vite/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"vue": "^3.2.41"
},
"devDependencies": {
"@vitejs/plugin-vue": "^3.1.2",
"vite": "^3.1.8"
"@vitejs/plugin-vue": "^3.2.0",
"vite": "^3.2.3"
}
}

0 comments on commit 71b08cd

Please sign in to comment.