chore(deps,deps-dev): update deps & deps-dev
This commit is contained in:
+11
-12
@@ -11,36 +11,35 @@
|
|||||||
"typedocs": "typedoc --options ./typedoc.json"
|
"typedocs": "typedoc --options ./typedoc.json"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@algolia/client-search": "^4.20.0",
|
"@algolia/client-search": "^4.21.1",
|
||||||
"@alwaysmeticulous/recorder-loader": "^2.77.0",
|
|
||||||
"@stackblitz/sdk": "^1.9.0",
|
"@stackblitz/sdk": "^1.9.0",
|
||||||
"@vercel/analytics": "^1.1.0",
|
"@vercel/analytics": "^1.1.1",
|
||||||
"@vue-flow/background": "workspace:*",
|
"@vue-flow/background": "workspace:*",
|
||||||
"@vue-flow/controls": "workspace:*",
|
"@vue-flow/controls": "workspace:*",
|
||||||
"@vue-flow/core": "workspace:*",
|
"@vue-flow/core": "workspace:*",
|
||||||
"@vue-flow/minimap": "workspace:*",
|
"@vue-flow/minimap": "workspace:*",
|
||||||
"@vue-flow/node-resizer": "workspace:*",
|
"@vue-flow/node-resizer": "workspace:*",
|
||||||
"@vue-flow/node-toolbar": "workspace:*",
|
"@vue-flow/node-toolbar": "workspace:*",
|
||||||
"@vue/repl": "1.4.1",
|
"@vue/repl": "3.0.0",
|
||||||
"blobity": "^0.2.3",
|
"blobity": "^0.2.3",
|
||||||
"vue": "^3.3.4",
|
"vue": "^3.3.11",
|
||||||
"web-vitals": "^3.5.0"
|
"web-vitals": "^3.5.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@iconify/json": "^2.2.125",
|
"@iconify/json": "^2.2.156",
|
||||||
"@tooling/eslint-config": "workspace:*",
|
"@tooling/eslint-config": "workspace:*",
|
||||||
"@tooling/tsconfig": "workspace:*",
|
"@tooling/tsconfig": "workspace:*",
|
||||||
"@windicss/plugin-scrollbar": "^1.2.3",
|
"@windicss/plugin-scrollbar": "^1.2.3",
|
||||||
"dotenv": "^16.3.1",
|
"dotenv": "^16.3.1",
|
||||||
"ohmyfetch": "^0.4.21",
|
"ohmyfetch": "^0.4.21",
|
||||||
"typedoc": "^0.25.1",
|
"typedoc": "^0.25.4",
|
||||||
"typedoc-plugin-markdown": "^3.16.0",
|
"typedoc-plugin-markdown": "^3.17.1",
|
||||||
"typedoc-plugin-merge-modules": "^5.1.0",
|
"typedoc-plugin-merge-modules": "^5.1.0",
|
||||||
"unplugin-auto-import": "^0.16.6",
|
"unplugin-auto-import": "^0.17.2",
|
||||||
"unplugin-icons": "^0.17.0",
|
"unplugin-icons": "^0.18.1",
|
||||||
"unplugin-vue-components": "^0.25.2",
|
"unplugin-vue-components": "^0.26.0",
|
||||||
"vite-plugin-windicss": "^1.9.1",
|
"vite-plugin-windicss": "^1.9.1",
|
||||||
"vitepress": "1.0.0-rc.20",
|
"vitepress": "1.0.0-rc.31",
|
||||||
"windicss": "^3.5.6"
|
"windicss": "^3.5.6"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -82,7 +82,6 @@ export default defineConfigWithTheme<DefaultTheme.Config>({
|
|||||||
},
|
},
|
||||||
define: {
|
define: {
|
||||||
__ANALYTICS_ID__: process.env.VERCEL_ANALYTICS_ID,
|
__ANALYTICS_ID__: process.env.VERCEL_ANALYTICS_ID,
|
||||||
__METICULOUS_PROJECT_ID__: process.env.METICULOUS_PROJECT_ID,
|
|
||||||
},
|
},
|
||||||
plugins: [
|
plugins: [
|
||||||
copyVueFlowPlugin(),
|
copyVueFlowPlugin(),
|
||||||
|
|||||||
@@ -7,8 +7,6 @@ const { Layout: ParentLayout } = DefaultTheme
|
|||||||
|
|
||||||
const route = useRoute()
|
const route = useRoute()
|
||||||
|
|
||||||
const METICULOUS_SAMPLING_RATE = 0.01
|
|
||||||
|
|
||||||
onMounted(async () => {
|
onMounted(async () => {
|
||||||
const isDev = import.meta.env.DEV
|
const isDev = import.meta.env.DEV
|
||||||
|
|
||||||
@@ -17,18 +15,6 @@ onMounted(async () => {
|
|||||||
webVitals({ analyticsId: '__ANALYTICS_ID__', debug: false })
|
webVitals({ analyticsId: '__ANALYTICS_ID__', debug: false })
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!isDev || Math.random() < METICULOUS_SAMPLING_RATE) {
|
|
||||||
const { tryLoadAndStartRecorder } = await import('@alwaysmeticulous/recorder-loader')
|
|
||||||
|
|
||||||
// Start the Meticulous recorder before you initialise your app.
|
|
||||||
// Note: all errors are caught and logged, so no need to surround with try/catch
|
|
||||||
tryLoadAndStartRecorder({
|
|
||||||
projectId: '__METICULOUS_PROJECT_ID__',
|
|
||||||
isProduction: !isDev,
|
|
||||||
maxMsToBlockFor: !isDev ? 250 : undefined, // Optional, abandon waiting to load the Meticulous recorder, if it takes more than 250ms
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
watch(
|
watch(
|
||||||
route,
|
route,
|
||||||
(nextRoute) => {
|
(nextRoute) => {
|
||||||
|
|||||||
+3
-3
@@ -19,9 +19,9 @@
|
|||||||
"ci:publish": "pnpm lint && pnpm build && pnpm test && changeset publish"
|
"ci:publish": "pnpm lint && pnpm build && pnpm test && changeset publish"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@changesets/changelog-github": "^0.4.8",
|
"@changesets/changelog-github": "^0.5.0",
|
||||||
"@changesets/cli": "^2.26.2",
|
"@changesets/cli": "^2.27.1",
|
||||||
"shx": "^0.3.4",
|
"shx": "^0.3.4",
|
||||||
"turbo": "^1.10.15"
|
"turbo": "^1.11.2"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Generated
+1018
-241
File diff suppressed because it is too large
Load Diff
@@ -8,7 +8,7 @@
|
|||||||
"@antfu/eslint-config": "^0.38.6",
|
"@antfu/eslint-config": "^0.38.6",
|
||||||
"eslint": "^8.51.0",
|
"eslint": "^8.51.0",
|
||||||
"eslint-config-prettier": "^8.10.0",
|
"eslint-config-prettier": "^8.10.0",
|
||||||
"eslint-config-turbo": "^1.10.15",
|
"eslint-config-turbo": "^1.11.2",
|
||||||
"eslint-plugin-prettier": "^4.2.1",
|
"eslint-plugin-prettier": "^4.2.1",
|
||||||
"prettier": "^2.8.8"
|
"prettier": "^2.8.8"
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user