Update :without-hexclave to :inner

This commit is contained in:
Konstantin Wohlwend 2026-06-17 10:25:00 -07:00
parent ec0008d515
commit 144c5fae89
5 changed files with 20 additions and 20 deletions

File diff suppressed because one or more lines are too long

View File

@ -33,8 +33,8 @@ export const config: HexclaveConfig = "show-onboarding";
```json title="package.json"
{
"scripts": {
"dev": "stack dev --config-file ./hexclave.config.ts -- npm run dev:without-hexclave",
"dev:without-hexclave": "<your-existing-dev-script>"
"dev": "stack dev --config-file ./hexclave.config.ts -- npm run dev:inner",
"dev:inner": "<your-existing-dev-script>"
}
}
```

View File

@ -256,8 +256,8 @@ The frameworks and languages with explicit SDK support are:
// ...
"scripts": {
// ...
"dev": "hexclave dev --config-file ./hexclave.config.ts -- npm run dev:without-hexclave",
"dev:without-hexclave": "<your-existing-dev-script>"
"dev": "hexclave dev --config-file ./hexclave.config.ts -- npm run dev:inner",
"dev:inner": "<your-existing-dev-script>"
}
}
```

File diff suppressed because one or more lines are too long

View File

@ -977,8 +977,8 @@ export function getSdkSetupPrompt(mainType: "ai-prompt" | "nextjs" | "react" | "
// ...
"scripts": {
// ...
"dev": "hexclave dev --config-file ./hexclave.config.ts -- npm run dev:without-hexclave",
"dev:without-hexclave": "<your-existing-dev-script>"
"dev": "hexclave dev --config-file ./hexclave.config.ts -- npm run dev:inner",
"dev:inner": "<your-existing-dev-script>"
}
}
\`\`\`