Skip to content

Commit

Permalink
fix: install method is assigned twice
Browse files Browse the repository at this point in the history
  • Loading branch information
cloydlau committed Feb 28, 2023
1 parent fc83914 commit 97e3371
Show file tree
Hide file tree
Showing 4 changed files with 936 additions and 328 deletions.
11 changes: 9 additions & 2 deletions auto-imports.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
// Generated by 'unplugin-auto-import'
/* eslint-disable */
/* prettier-ignore */
// @ts-nocheck
// Generated by unplugin-auto-import
export {}
declare global {
const EffectScope: typeof import('vue')['EffectScope']
Expand Down Expand Up @@ -36,7 +39,6 @@ declare global {
const readonly: typeof import('vue')['readonly']
const ref: typeof import('vue')['ref']
const resolveComponent: typeof import('vue')['resolveComponent']
const resolveDirective: typeof import('vue')['resolveDirective']
const shallowReactive: typeof import('vue')['shallowReactive']
const shallowReadonly: typeof import('vue')['shallowReadonly']
const shallowRef: typeof import('vue')['shallowRef']
Expand All @@ -54,3 +56,8 @@ declare global {
const watchPostEffect: typeof import('vue')['watchPostEffect']
const watchSyncEffect: typeof import('vue')['watchSyncEffect']
}
// for type re-export
declare global {
// @ts-ignore
export type { Component, ComponentPublicInstance, ComputedRef, InjectionKey, PropType, Ref, VNode } from 'vue'
}
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"PascalCasedName": "JsonEditorVue",
"version": "0.10.5",
"private": false,
"packageManager": "pnpm@7.26.3",
"packageManager": "pnpm@7.28.0",
"description": "JSON editor & viewer for Vue 2.6/2.7/3 & Nuxt 2/3.",
"author": "Cloyd Lau",
"license": "MIT",
Expand Down Expand Up @@ -68,10 +68,8 @@
"@commitlint/config-conventional": "latest",
"@types/lodash-es": "latest",
"@types/node": "latest",
"@vitejs/plugin-vue": "latest",
"@vitest/coverage-c8": "latest",
"@vitest/ui": "latest",
"@vue/compiler-sfc": "latest",
"@vue/test-utils": "latest",
"case-police": "latest",
"happy-dom": "latest",
Expand All @@ -88,7 +86,9 @@
"vitepress": "latest",
"vitest": "latest",
"vue": "latest",
"zhlint": "latest"
"zhlint": "latest",
"@vitejs/plugin-vue": "latest",
"@vue/compiler-sfc": "latest"
},
"lint-staged": {
"{src,__tests__}/**.*": "rome check",
Expand All @@ -100,4 +100,4 @@
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}
}
Loading

0 comments on commit 97e3371

Please sign in to comment.