Skip to content

Commit

Permalink
Fix local install support
Browse files Browse the repository at this point in the history
  • Loading branch information
Tofandel committed Sep 25, 2023
1 parent 5d55ff7 commit 6010cdd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
}
},
"scripts": {
"dev": "vite",
"prepare": "pnpm run build",
"clean": "rimraf dist/**/*",
"lint": "npx eslint --ext .ts,.vue src dev docs --fix",
"build:umd": "node ./scripts/build-umd.js",
Expand All @@ -56,6 +56,7 @@
"fast-deep-equal": "^3.1.3"
},
"devDependencies": {
"pnpm": "^8.7.6",
"@types/google.maps": "^3.53.6",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
Expand Down
2 changes: 1 addition & 1 deletion src/components/InfoWindow.vue
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export default defineComponent({
const hasSlotContent = computed(() => slots.default?.().some((vnode) => vnode.type !== Comment));
const updateVModel = (val) => {
const updateVModel = (val: boolean) => {
internalVal = val;
emit('update:modelValue', val);
}
Expand Down

0 comments on commit 6010cdd

Please sign in to comment.