Skip to content
Open
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: 0 additions & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@

calcit.cirru -diff linguist-generated
yarn.lock -diff linguist-generated
2 changes: 1 addition & 1 deletion .github/workflows/upload.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

- uses: actions/setup-node@v4
with:
node-version: 22
node-version: 24
Copy link

Copilot AI Jan 26, 2026

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.

Suggested change
node-version: 24
node-version: 22

Copilot uses AI. Check for mistakes.
cache: yarn

- run: yarn && yarn tsc
19 changes: 0 additions & 19 deletions index.html

This file was deleted.

13 changes: 7 additions & 6 deletions package.json
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=./",
Expand All @@ -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"
Copy link

Copilot AI Jan 26, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The vite package was moved from dependencies (implicitly) to devDependencies, but it's unclear if vite was actually a production dependency before. The package.json scripts include "release-page" which uses vite for building, so this placement as a devDependency is correct. However, verify that this doesn't break any production build processes.

Copilot uses AI. Check for mistakes.
},
"version": "0.0.1",
"packageManager": "yarn@1.22.19+sha1.4ba7fc5c6e704fce2066ecbfb0b0d8976fe62447"
Expand Down
Loading