-
Notifications
You must be signed in to change notification settings - Fork 0
moving to interactions API #4
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,2 @@ | ||
|
|
||
| calcit.cirru -diff linguist-generated | ||
| yarn.lock -diff linguist-generated |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -14,7 +14,7 @@ jobs: | |
|
|
||
| - uses: actions/setup-node@v4 | ||
| with: | ||
| node-version: 22 | ||
| node-version: 24 | ||
| cache: yarn | ||
|
|
||
| - run: yarn && yarn tsc | ||
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,9 +1,9 @@ | ||
| { | ||
| "name": "macrophylla", | ||
| "dependencies": { | ||
| "@google/genai": "^1.10.0", | ||
| "chalk": "^5.4.1", | ||
| "string-width": "^7.2.0" | ||
| "@google/genai": "^1.38.0", | ||
| "chalk": "^5.6.2", | ||
| "string-width": "^8.1.0" | ||
| }, | ||
| "scripts": { | ||
| "release-page": "vite build --base=./", | ||
|
|
@@ -14,9 +14,10 @@ | |
| "mcpl": "./bin.mjs" | ||
| }, | ||
| "devDependencies": { | ||
| "@types/node": "^24.0.15", | ||
| "typescript": "^5.8.3", | ||
| "url-parse": "^1.5.10" | ||
| "@types/node": "^25.0.10", | ||
| "typescript": "^5.9.3", | ||
| "url-parse": "^1.5.10", | ||
| "vite": "^7.3.1" | ||
|
||
| }, | ||
| "version": "0.0.1", | ||
| "packageManager": "yarn@1.22.19+sha1.4ba7fc5c6e704fce2066ecbfb0b0d8976fe62447" | ||
|
|
||
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.
The Node.js version was updated from 22 to 24 in the CI workflow. Node.js 24 is not yet released (as of January 2025, the latest LTS is Node 22). This appears to be a future-proofing change or potentially an error. Verify that Node 24 is available and stable, or consider using Node 22 or 23 (current versions) instead.