Skip to content

Commit

Permalink
Merge branch 'master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
mubaidr authored Jan 9, 2025
2 parents d153f86 + 4ad7a4a commit dd2f56d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -89,11 +89,11 @@
},
"scripts": {
"build": "npm run build:chrome && npm run build:firefox",
"build:chrome": "vite build -c vite.chrome.config.ts",
"build:firefox": "vite build -c vite.firefox.config.ts",
"build:chrome": "cross-env NODE_ENV=production vite build -c vite.chrome.config.ts",
"build:firefox": "cross-env NODE_ENV=production vite build -c vite.firefox.config.ts",
"dev": "concurrently \"npm run dev:chrome\" \"npm run dev:firefox\"",
"dev:chrome": "vite -c vite.chrome.config.ts",
"dev:firefox": "vite build --mode development --watch -c vite.firefox.config.ts",
"dev:chrome": "cross-env NODE_ENV=development vite -c vite.chrome.config.ts",
"dev:firefox": "cross-env NODE_ENV=development vite build --mode development --watch -c vite.firefox.config.ts",
"format": "prettier --write .",
"launch": "tsx scripts/launch.ts",
"launch:all": "tsx scripts/launch.ts --all",
Expand Down
3 changes: 2 additions & 1 deletion src/types/.eslintrc-auto-import.json
Original file line number Diff line number Diff line change
Expand Up @@ -360,6 +360,7 @@
"MaybeRef": true,
"MaybeRefOrGetter": true,
"usePreferredReducedTransparency": true,
"useSSRWidth": true
"useSSRWidth": true,
"onElementRemoval": true
}
}
2 changes: 2 additions & 0 deletions src/types/auto-imports.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ declare global {
const onBeforeUpdate: typeof import('vue')['onBeforeUpdate']
const onClickOutside: typeof import('@vueuse/core')['onClickOutside']
const onDeactivated: typeof import('vue')['onDeactivated']
const onElementRemoval: typeof import('@vueuse/core')['onElementRemoval']
const onErrorCaptured: typeof import('vue')['onErrorCaptured']
const onKeyStroke: typeof import('@vueuse/core')['onKeyStroke']
const onLongPress: typeof import('@vueuse/core')['onLongPress']
Expand Down Expand Up @@ -431,6 +432,7 @@ declare module 'vue' {
readonly onBeforeUpdate: UnwrapRef<typeof import('vue')['onBeforeUpdate']>
readonly onClickOutside: UnwrapRef<typeof import('@vueuse/core')['onClickOutside']>
readonly onDeactivated: UnwrapRef<typeof import('vue')['onDeactivated']>
readonly onElementRemoval: UnwrapRef<typeof import('@vueuse/core')['onElementRemoval']>
readonly onErrorCaptured: UnwrapRef<typeof import('vue')['onErrorCaptured']>
readonly onKeyStroke: UnwrapRef<typeof import('@vueuse/core')['onKeyStroke']>
readonly onLongPress: UnwrapRef<typeof import('@vueuse/core')['onLongPress']>
Expand Down

0 comments on commit dd2f56d

Please sign in to comment.