Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/plugin-a11y-checker/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "example-plugin-a11y-checker",
"type": "module",
"version": "0.1.11",
"version": "0.1.12",
"private": true,
"exports": {
".": "./dist/index.mjs",
Expand Down
2 changes: 1 addition & 1 deletion examples/plugin-file-explorer/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "example-plugin-file-explorer",
"type": "module",
"version": "0.1.11",
"version": "0.1.12",
"private": true,
"exports": {
".": "./dist/index.mjs",
Expand Down
2 changes: 1 addition & 1 deletion examples/plugin-git-ui/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "example-plugin-git-ui",
"type": "module",
"version": "0.1.11",
"version": "0.1.12",
"private": true,
"exports": {
".": "./dist/index.mjs",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"type": "module",
"version": "0.1.11",
"version": "0.1.12",
"private": true,
"packageManager": "pnpm@10.33.0",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@vitejs/devtools",
"type": "module",
"version": "0.1.11",
"version": "0.1.12",
"description": "Vite DevTools",
"author": "VoidZero Inc.",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion packages/core/playground/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "playground",
"type": "module",
"version": "0.1.11",
"version": "0.1.12",
"private": true,
"scripts": {
"dev": "DEBUG='vite:devtools:*' VITE_DEVTOOLS_LOCAL_DEV=true vite",
Expand Down
4 changes: 2 additions & 2 deletions packages/core/src/client/webcomponents/state/context.ts
Original file line number Diff line number Diff line change
Expand Up @@ -145,8 +145,8 @@ export async function createDocksContext(
source: 'client',
title: 'Close Panel',
icon: 'ph:x-circle-duotone',
when: 'dockOpen',
keybindings: [],
when: 'dockOpen && !paletteOpen',
keybindings: [{ key: 'Escape' }],
action: () => {
panelStore.value.open = false
selectedId.value = null
Expand Down
2 changes: 1 addition & 1 deletion packages/kit/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@vitejs/devtools-kit",
"type": "module",
"version": "0.1.11",
"version": "0.1.12",
"description": "Vite DevTools Kit",
"author": "VoidZero Inc.",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion packages/rolldown/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@vitejs/devtools-rolldown",
"type": "module",
"version": "0.1.11",
"version": "0.1.12",
"description": "DevTools for Rolldown",
"author": "VoidZero Inc.",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion packages/rpc/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@vitejs/devtools-rpc",
"type": "module",
"version": "0.1.11",
"version": "0.1.12",
"description": "Vite DevTools RPC Layer",
"author": "VoidZero Inc.",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion packages/self-inspect/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@vitejs/devtools-self-inspect",
"type": "module",
"version": "0.1.11",
"version": "0.1.12",
"description": "DevTools for inspecting the DevTools itself",
"author": "VoidZero Inc.",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@vitejs/devtools-ui",
"type": "module",
"version": "0.1.11",
"version": "0.1.12",
"private": true,
"description": "DevTools UI for Vite",
"author": "VoidZero Inc.",
Expand Down
2 changes: 1 addition & 1 deletion packages/vite/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@vitejs/devtools-vite",
"type": "module",
"version": "0.1.11",
"version": "0.1.12",
"private": true,
"description": "DevTools for Vite (work in progress)",
"author": "VoidZero Inc.",
Expand Down
2 changes: 1 addition & 1 deletion packages/webext/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@vitejs/devtools-webext",
"type": "module",
"version": "0.1.11",
"version": "0.1.12",
"private": true,
"description": "DevTools browser extension for Vite (work in progress)",
"author": "VoidZero Inc.",
Expand Down
Loading