-
Notifications
You must be signed in to change notification settings - Fork 0
Fix repository url in package.json #5
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,7 +1,16 @@ | ||
| { | ||
| "name": "@formo/cli", | ||
| "version": "0.2.0", | ||
| "packageManager": "pnpm@10.28.2", | ||
| "description": "Formo API CLI — query profiles and analytics data", | ||
| "repository": { | ||
| "type": "git", | ||
| "url": "git+https://github.com/getformo/cli.git" | ||
| }, | ||
| "homepage": "https://github.com/getformo/cli#readme", | ||
| "bugs": { | ||
| "url": "https://github.com/getformo/cli/issues" | ||
| }, | ||
|
Comment on lines
+6
to
+13
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. For GitHub-hosted repositories, you can simplify the "repository": "getformo/cli", |
||
| "bin": { | ||
| "formo": "dist/index.js" | ||
| }, | ||
|
|
||
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 version
10.28.2forpnpmappears to be a typo. pnpm 10 is a very recent major version and likely has not reached such a high patch number yet. An invalid version in thepackageManagerfield will causecorepackto fail when attempting to prepare the environment. Please verify the intended version (e.g.,9.15.4or10.0.0).