Skip to content
Merged
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
1 change: 1 addition & 0 deletions packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@
}
},
"dependencies": {
"@devframes/agentic": "catalog:deps",
"@devframes/hub": "catalog:deps",
"@devframes/hub-ui": "catalog:deps",
"@devframes/json-render-ui": "catalog:deps",
Expand Down
6 changes: 3 additions & 3 deletions packages/oxc/src/node/devframe.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ export const oxcDevframe = defineDevframe({
description,
icon: `${OXC_DEVTOOLS_BASE}favicon.svg`,
basePath: OXC_DEVTOOLS_BASE,
// Serve the prebuilt Nuxt SPA when it exists (packaged builds); in client
// dev mode the Nuxt dev server owns the UI, so leave it unset.
clientAssets: existsSync(clientPublicDir) ? clientPublicDir : undefined,
cli: {
command: 'oxc-devtools',
// Serve the prebuilt Nuxt SPA when it exists (packaged builds); in client
// dev mode the Nuxt dev server owns the UI, so leave it unset.
distDir: existsSync(clientPublicDir) ? clientPublicDir : undefined,
// Single-user localhost tool — skip the RPC trust handshake.
auth: false,
},
Expand Down
4 changes: 2 additions & 2 deletions playgrounds/core/vite.config.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import process from 'node:process'
import { fileURLToPath } from 'node:url'
import { a11yAgentBundlePath, createA11yDevframe } from '@devframes/plugin-a11y'
import { a11yClientScriptBundlePath, createA11yDevframe } from '@devframes/plugin-a11y'
import { createCodeServerDevframe } from '@devframes/plugin-code-server'
import { createDataInspectorDevframe } from '@devframes/plugin-data-inspector'
import { createGitDevframe } from '@devframes/plugin-git'
Expand Down Expand Up @@ -93,7 +93,7 @@ export default defineConfig({
// The panel scans the host page itself, so it needs its agent
// injected as a client script — see the `@devframes/plugin-a11y`
// README's "How it works" section.
clientScript: { importFrom: `/@fs/${normalize(a11yAgentBundlePath)}` },
clientScript: { importFrom: `/@fs/${normalize(a11yClientScriptBundlePath)}` },
},
}),
createPluginFromDevframe(createGitDevframe({
Expand Down
Loading
Loading