Skip to content

Commit 4df7281

Browse files
committed
chore: fix typo
1 parent 30437d9 commit 4df7281

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
"dev:standalone": "cd src/client/standalone && vite dev",
4646
"prepack": "pnpm build",
4747
"play": "DEBUG='vite:devtools:*' pnpm -C playground run dev",
48-
"play:standlone": "DEBUG='vite:devtools:*' pnpm -C playground run dev:standalone",
48+
"play:standalone": "DEBUG='vite:devtools:*' pnpm -C playground run dev:standalone",
4949
"cli": "DEBUG='vite:devtools:*' tsx src/node/cli.ts",
5050
"play:build": "pnpm -C playground run build"
5151
},

packages/core/playground/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"private": true,
66
"scripts": {
77
"dev": "VITE_DEVTOOLS_LOCAL_DEV=true vite",
8-
"dev:standlone": "DEBUG='vite:devtools:*' VITE_DEVTOOLS_LOCAL_DEV=true tsx ../src/node/cli.ts",
8+
"dev:standalone": "DEBUG='vite:devtools:*' VITE_DEVTOOLS_LOCAL_DEV=true tsx ../src/node/cli.ts",
99
"build": "vite build && vite-devtools"
1010
}
1111
}

packages/kit/src/client/docks.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export interface DocksContext extends DevToolsClientContext {
2828
* Type of the client environment
2929
*
3030
* 'embedded' - running inside an embedded floating panel
31-
* 'standalone' - running inside a standlone window (no user app)
31+
* 'standalone' - running inside a standalone window (no user app)
3232
*/
3333
readonly clientType: 'embedded' | 'standalone'
3434
/**

0 commit comments

Comments
 (0)