-
Notifications
You must be signed in to change notification settings - Fork 13
Fix Type Errors and Build Failures Across Core Packages #21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -23,13 +23,14 @@ | |
| "clean": "rm -rf dist" | ||
| }, | ||
| "dependencies": { | ||
| "@google/genai": "1.9.0", | ||
| "@kolosal-ai/kolosal-ai-core": "file:../core", | ||
| "@google/genai": "1.9.0" | ||
| "vite": "7.2.4" | ||
|
||
| }, | ||
| "devDependencies": { | ||
| "@types/node": "^22.9.0", | ||
| "typescript": "^5.6.3", | ||
| "vitest": "^2.1.4" | ||
| "vitest": "^4.0.14" | ||
| }, | ||
| "license": "Apache-2.0", | ||
| "keywords": [ | ||
|
|
@@ -48,4 +49,4 @@ | |
| "url": "https://github.com/kolosalAI/kolosal-cli/issues" | ||
| }, | ||
| "homepage": "https://github.com/kolosalAI/kolosal-cli/tree/main/packages/api-server" | ||
| } | ||
| } | ||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -55,37 +55,40 @@ | |||||
| "qrcode-terminal": "^0.12.0", | ||||||
| "react": "^19.1.0", | ||||||
| "read-package-up": "^11.0.0", | ||||||
| "simple-git": "^3.28.0", | ||||||
| "shell-quote": "^1.8.3", | ||||||
| "simple-git": "^3.28.0", | ||||||
| "string-width": "^7.1.0", | ||||||
| "strip-ansi": "^7.1.0", | ||||||
| "strip-json-comments": "^3.1.1", | ||||||
| "undici": "^7.10.0", | ||||||
| "update-notifier": "^7.3.1", | ||||||
| "uuid": "^9.0.1", | ||||||
| "yargs": "^17.7.2", | ||||||
| "zod": "^3.23.8" | ||||||
| }, | ||||||
| "devDependencies": { | ||||||
| "@babel/runtime": "^7.27.6", | ||||||
| "@google/gemini-cli-test-utils": "file:../test-utils", | ||||||
| "@kolosal-code/kolosal-code-test-utils": "file:../test-utils", | ||||||
| "@testing-library/react": "^16.3.0", | ||||||
| "@types/command-exists": "^1.2.3", | ||||||
| "@types/diff": "^7.0.2", | ||||||
| "@types/dotenv": "^6.1.1", | ||||||
| "@types/lodash-es": "^4.17.12", | ||||||
| "@types/minimatch": "^6.0.0", | ||||||
|
||||||
| "@types/minimatch": "^6.0.0", | |
| "@types/minimatch": "^5.1.2", |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -14,6 +14,6 @@ | |
| }, | ||
| "devDependencies": { | ||
| "@tauri-apps/cli": "^1.5.8", | ||
| "vite": "^5.0.8" | ||
| "vite": "^7.2.4" | ||
| } | ||
| } | ||
| } | ||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -39,21 +39,21 @@ | |||||
| "commands": [ | ||||||
| { | ||||||
| "command": "kolosal.diff.accept", | ||||||
| "title": "Kolosal Cli: Accept Current Diff", | ||||||
| "title": "Kolosal Cli: Accept Current Diff", | ||||||
| "icon": "$(check)" | ||||||
| }, | ||||||
| { | ||||||
| "command": "kolosal.diff.cancel", | ||||||
| "title": "Kolosal Cli: Close Diff Editor", | ||||||
| "title": "Kolosal Cli: Close Diff Editor", | ||||||
| "icon": "$(close)" | ||||||
| }, | ||||||
| { | ||||||
| "command": "kolosal-ai.runQwenCode", | ||||||
| "title": "Kolosal Cli: Run" | ||||||
| "title": "Kolosal Cli: Run" | ||||||
| }, | ||||||
| { | ||||||
| "command": "kolosal-ai.showNotices", | ||||||
| "title": "Kolosal Cli: View Third-Party Notices" | ||||||
| "title": "Kolosal Cli: View Third-Party Notices" | ||||||
| } | ||||||
| ], | ||||||
| "menus": { | ||||||
|
|
@@ -112,7 +112,9 @@ | |||||
| "devDependencies": { | ||||||
| "@types/cors": "^2.8.19", | ||||||
| "@types/express": "^5.0.3", | ||||||
| "@types/minimatch": "^6.0.0", | ||||||
|
||||||
| "@types/minimatch": "^6.0.0", | |
| "@types/minimatch": "^5.1.2", |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| declare module 'uuid' { | ||
| export function v4(): string; | ||
| export const v1: () => string; | ||
| export const v3: (name: any, namespace: any) => string; | ||
| export const v5: (name: any, namespace: any) => string; | ||
| export const NIL: string; | ||
| export const parse: (uuid: string) => Uint8Array; | ||
| export const stringify: (buffer: Uint8Array, offset?: number) => string; | ||
| export const validate: (uuid: string) => boolean; | ||
| export const version: (uuid: string) => number; | ||
| } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Adding 'vite' as a runtime dependency in the root package.json is unusual. Vite is typically a build tool. If this is not required for runtime functionality across the monorepo, it should be moved to devDependencies or to the specific packages that need it.