Skip to content
Draft
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 package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"name": "cozystack-ui",
"private": true,
"type": "module",
"packageManager": "pnpm@10.26.0",
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

critical

This line is missing a trailing comma, which makes the package.json file invalid JSON. Any subsequent pnpm or npm commands will fail due to this syntax error.

Additionally, the specified pnpm version 10.26.0 does not appear to be a valid, publicly released version. This will likely cause the CI to fail when pnpm/action-setup tries to download it, as it won't be found in the official pnpm releases.

Please add the comma and use a valid pnpm version to fix both issues.

Suggested change
"packageManager": "pnpm@10.26.0",
"packageManager": "pnpm@9.4.0",

"scripts": {
"dev": "pnpm --filter @cozystack/console dev",
"build": "pnpm -r build",
Expand Down
Loading