@nuxt/devtools
Advanced tools
Comparing version 2.0.0 to 2.1.0
@@ -1,1 +0,1 @@ | ||
{"id":"d7fd3832-7caa-4509-b853-415d3c160ceb","timestamp":1738845194404} | ||
{"id":"5f994163-fc52-4e71-a78a-98b64f1fb08f","timestamp":1739693522122} |
import * as _nuxt_schema from '@nuxt/schema'; | ||
import './shared/devtools.2a48a9e5.js'; | ||
import './shared/devtools.2e078e30.js'; | ||
import { ModuleOptions } from '@nuxt/devtools-kit/types'; | ||
@@ -4,0 +4,0 @@ export { ModuleOptions } from '@nuxt/devtools-kit/types'; |
{ | ||
"name": "@nuxt/devtools", | ||
"configKey": "devtools", | ||
"version": "2.0.0", | ||
"version": "2.1.0", | ||
"builder": { | ||
@@ -6,0 +6,0 @@ "@nuxt/module-builder": "0.8.4", |
@@ -141,10 +141,13 @@ import { useAppConfig, useRuntimeConfig } from "#imports"; | ||
} | ||
function getInspector() { | ||
return window.__NUXT_INSPECTOR__ || window.__VUE_INSPECTOR__; | ||
} | ||
function enableComponentInspector() { | ||
window.__VUE_INSPECTOR__?.enable(); | ||
getInspector()?.enable(); | ||
isInspecting.value = true; | ||
} | ||
function disableComponentInspector() { | ||
if (!window.__VUE_INSPECTOR__?.enabled) | ||
if (!getInspector()?.enabled) | ||
return; | ||
window.__VUE_INSPECTOR__?.disable(); | ||
getInspector()?.disable(); | ||
client?.hooks.callHook("host:inspector:close"); | ||
@@ -154,3 +157,3 @@ isInspecting.value = false; | ||
function getInspectorInstance() { | ||
const componentInspector = window.__VUE_INSPECTOR__; | ||
const componentInspector = getInspector(); | ||
if (componentInspector) { | ||
@@ -175,3 +178,3 @@ componentInspector.openInEditor = async (url) => { | ||
client.devtools.open(); | ||
if (window.__VUE_INSPECTOR__?.enabled) | ||
if (getInspector()?.enabled) | ||
disableComponentInspector(); | ||
@@ -178,0 +181,0 @@ else |
@@ -1,2 +0,2 @@ | ||
import './shared/devtools.2a48a9e5.js'; | ||
import './shared/devtools.2e078e30.js'; | ||
import { ModuleStaticInfo } from '@nuxt/devtools-kit/types'; | ||
@@ -3,0 +3,0 @@ export * from '@nuxt/devtools-kit/types'; |
{ | ||
"name": "@nuxt/devtools", | ||
"type": "module", | ||
"version": "2.0.0", | ||
"version": "2.1.0", | ||
"description": "The Nuxt DevTools gives you insights and transparency about your Nuxt App.", | ||
@@ -36,4 +36,4 @@ "license": "MIT", | ||
"@nuxt/kit": "^3.15.4", | ||
"@vue/devtools-core": "^7.7.1", | ||
"@vue/devtools-kit": "^7.7.1", | ||
"@vue/devtools-core": "^7.7.2", | ||
"@vue/devtools-kit": "^7.7.2", | ||
"birpc": "^2.2.0", | ||
@@ -44,3 +44,3 @@ "consola": "^3.4.0", | ||
"execa": "^9.5.2", | ||
"fast-npm-meta": "^0.3.0", | ||
"fast-npm-meta": "^0.3.1", | ||
"get-port-please": "^3.1.2", | ||
@@ -55,3 +55,3 @@ "hookable": "^5.5.3", | ||
"ohash": "^1.1.4", | ||
"pathe": "^2.0.2", | ||
"pathe": "^2.0.3", | ||
"perfect-debounce": "^1.0.0", | ||
@@ -64,31 +64,31 @@ "pkg-types": "^1.3.1", | ||
"tinyglobby": "^0.2.10", | ||
"vite-plugin-inspect": "^10.1.0", | ||
"vite-plugin-inspect": "^10.2.1", | ||
"vite-plugin-vue-inspector": "^5.3.1", | ||
"which": "^5.0.0", | ||
"ws": "^8.18.0", | ||
"@nuxt/devtools-kit": "2.0.0", | ||
"@nuxt/devtools-wizard": "2.0.0" | ||
"@nuxt/devtools-wizard": "2.1.0", | ||
"@nuxt/devtools-kit": "2.1.0" | ||
}, | ||
"devDependencies": { | ||
"@antfu/utils": "^8.1.0", | ||
"@antfu/utils": "^9.0.0", | ||
"@discoveryjs/cli": "^2.13.1", | ||
"@discoveryjs/discovery": "1.0.0-beta.92", | ||
"@iconify-json/bxl": "^1.2.2", | ||
"@iconify-json/carbon": "^1.2.6", | ||
"@iconify-json/carbon": "^1.2.7", | ||
"@iconify-json/logos": "^1.2.4", | ||
"@iconify-json/ri": "^1.2.5", | ||
"@iconify-json/simple-icons": "^1.2.23", | ||
"@iconify-json/tabler": "^1.2.15", | ||
"@iconify-json/simple-icons": "^1.2.24", | ||
"@iconify-json/tabler": "^1.2.16", | ||
"@nuxt/content": "^2.13.4", | ||
"@nuxt/test-utils": "^3.15.4", | ||
"@parcel/watcher": "^2.5.1", | ||
"@shikijs/langs-precompiled": "^2.3.1", | ||
"@shikijs/langs-precompiled": "^2.4.1", | ||
"@types/markdown-it-link-attributes": "^3.0.5", | ||
"@unocss/nuxt": "^65.4.3", | ||
"@unocss/preset-icons": "^65.4.3", | ||
"@unocss/preset-uno": "^65.4.3", | ||
"@unocss/runtime": "^65.4.3", | ||
"@unocss/nuxt": "^65.5.0", | ||
"@unocss/preset-icons": "^65.5.0", | ||
"@unocss/preset-uno": "^65.5.0", | ||
"@unocss/runtime": "^65.5.0", | ||
"@vitest/ui": "^3.0.5", | ||
"@vue/devtools-applet": "^7.7.1", | ||
"@vueuse/nuxt": "^12.5.0", | ||
"@vue/devtools-applet": "^7.7.2", | ||
"@vueuse/nuxt": "^12.7.0", | ||
"@xterm/addon-fit": "^0.10.0", | ||
@@ -104,3 +104,3 @@ "@xterm/xterm": "^5.5.0", | ||
"my-ua-parser": "^2.0.4", | ||
"nanoid": "^5.0.9", | ||
"nanoid": "^5.1.0", | ||
"nitropack": "^2.10.4", | ||
@@ -111,14 +111,14 @@ "nuxt": "^3.15.4", | ||
"scule": "^1.3.0", | ||
"shiki": "^2.3.1", | ||
"shiki-codegen": "^2.3.1", | ||
"shiki": "^2.4.1", | ||
"shiki-codegen": "^2.4.1", | ||
"theme-vitesse": "^0.8.3", | ||
"unimport": "^4.0.0", | ||
"unocss": "^65.4.3", | ||
"unimport": "^4.1.1", | ||
"unocss": "^65.5.0", | ||
"unplugin-vue-markdown": "^28.3.0", | ||
"vanilla-jsoneditor": "^2.3.3", | ||
"vanilla-jsoneditor": "^2.4.0", | ||
"vis-data": "^7.1.9", | ||
"vis-network": "^9.1.9", | ||
"vue-tsc": "^2.2.0", | ||
"vue-tsc": "^2.2.2", | ||
"vue-virtual-scroller": "^2.0.0-beta.8", | ||
"@nuxt/devtools": "2.0.0" | ||
"@nuxt/devtools": "2.1.0" | ||
}, | ||
@@ -125,0 +125,0 @@ "scripts": { |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
8143574
47724
12
+ Added@nuxt/devtools-kit@2.1.0(transitive)
+ Added@nuxt/devtools-wizard@2.1.0(transitive)
+ Added@rollup/rollup-android-arm-eabi@4.34.9(transitive)
+ Added@rollup/rollup-android-arm64@4.34.9(transitive)
+ Added@rollup/rollup-darwin-arm64@4.34.9(transitive)
+ Added@rollup/rollup-darwin-x64@4.34.9(transitive)
+ Added@rollup/rollup-freebsd-arm64@4.34.9(transitive)
+ Added@rollup/rollup-freebsd-x64@4.34.9(transitive)
+ Added@rollup/rollup-linux-arm-gnueabihf@4.34.9(transitive)
+ Added@rollup/rollup-linux-arm-musleabihf@4.34.9(transitive)
+ Added@rollup/rollup-linux-arm64-gnu@4.34.9(transitive)
+ Added@rollup/rollup-linux-arm64-musl@4.34.9(transitive)
+ Added@rollup/rollup-linux-loongarch64-gnu@4.34.9(transitive)
+ Added@rollup/rollup-linux-powerpc64le-gnu@4.34.9(transitive)
+ Added@rollup/rollup-linux-riscv64-gnu@4.34.9(transitive)
+ Added@rollup/rollup-linux-s390x-gnu@4.34.9(transitive)
+ Added@rollup/rollup-linux-x64-gnu@4.34.9(transitive)
+ Added@rollup/rollup-linux-x64-musl@4.34.9(transitive)
+ Added@rollup/rollup-win32-arm64-msvc@4.34.9(transitive)
+ Added@rollup/rollup-win32-ia32-msvc@4.34.9(transitive)
+ Added@rollup/rollup-win32-x64-msvc@4.34.9(transitive)
+ Addedansis@3.17.0(transitive)
+ Addedcaniuse-lite@1.0.30001702(transitive)
+ Addedconfbox@0.2.1(transitive)
+ Addedelectron-to-chromium@1.5.112(transitive)
+ Addedexsolve@1.0.1(transitive)
+ Addedlocal-pkg@1.1.1(transitive)
+ Addedohash@1.1.62.0.11(transitive)
+ Addedpkg-types@2.1.0(transitive)
+ Addedquansync@0.2.8(transitive)
+ Addedrollup@4.34.9(transitive)
+ Addedstd-env@3.8.1(transitive)
- Removed@nuxt/devtools-kit@2.0.0(transitive)
- Removed@nuxt/devtools-wizard@2.0.0(transitive)
- Removed@rollup/rollup-android-arm-eabi@4.34.8(transitive)
- Removed@rollup/rollup-android-arm64@4.34.8(transitive)
- Removed@rollup/rollup-darwin-arm64@4.34.8(transitive)
- Removed@rollup/rollup-darwin-x64@4.34.8(transitive)
- Removed@rollup/rollup-freebsd-arm64@4.34.8(transitive)
- Removed@rollup/rollup-freebsd-x64@4.34.8(transitive)
- Removed@rollup/rollup-linux-arm-gnueabihf@4.34.8(transitive)
- Removed@rollup/rollup-linux-arm-musleabihf@4.34.8(transitive)
- Removed@rollup/rollup-linux-arm64-gnu@4.34.8(transitive)
- Removed@rollup/rollup-linux-arm64-musl@4.34.8(transitive)
- Removed@rollup/rollup-linux-loongarch64-gnu@4.34.8(transitive)
- Removed@rollup/rollup-linux-powerpc64le-gnu@4.34.8(transitive)
- Removed@rollup/rollup-linux-riscv64-gnu@4.34.8(transitive)
- Removed@rollup/rollup-linux-s390x-gnu@4.34.8(transitive)
- Removed@rollup/rollup-linux-x64-gnu@4.34.8(transitive)
- Removed@rollup/rollup-linux-x64-musl@4.34.8(transitive)
- Removed@rollup/rollup-win32-arm64-msvc@4.34.8(transitive)
- Removed@rollup/rollup-win32-ia32-msvc@4.34.8(transitive)
- Removed@rollup/rollup-win32-x64-msvc@4.34.8(transitive)
- Removedansis@3.16.0(transitive)
- Removedcaniuse-lite@1.0.30001701(transitive)
- Removedelectron-to-chromium@1.5.109(transitive)
- Removedlocal-pkg@1.1.0(transitive)
- Removedohash@1.1.42.0.6(transitive)
- Removedquansync@0.2.6(transitive)
- Removedrollup@4.34.8(transitive)
- Removedstd-env@3.8.0(transitive)
Updated@nuxt/devtools-kit@2.1.0
Updated@nuxt/devtools-wizard@2.1.0
Updated@vue/devtools-core@^7.7.2
Updated@vue/devtools-kit@^7.7.2
Updatedfast-npm-meta@^0.3.1
Updatedpathe@^2.0.3
Updatedvite-plugin-inspect@^10.2.1