Skip to content
Closed
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
2 changes: 1 addition & 1 deletion packages/components/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lambdacurry/forms",
"version": "0.19.1",
"version": "0.19.2",

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

💡 Verification agent

🧩 Analysis chain

Version bump acknowledged – verify downstream alignment

The bump to 0.19.2 itself is fine, but make sure every other package.json in the monorepo (apps and packages) that declares a dependency on @lambdacurry/forms is updated to the same version or to a range (^0.19.2) that includes it; otherwise yarn workspaces / external consumers may pull mismatched builds.


🏁 Script executed:

#!/bin/bash
# Locate every package.json that depends on @lambdacurry/forms and show the specified version.
fd package.json -t f -E node_modules | xargs -I{} jq -r \
  'select(.dependencies."@lambdacurry/forms" or .peerDependencies."@lambdacurry/forms") 
   | (.name // "unknown-package") + ": " + 
     ((.dependencies."@lambdacurry/forms" // .peerDependencies."@lambdacurry/forms"))' {} || true

Length of output: 309


Align @lambdacurry/forms version in downstream packages

Only one other package.json declares a dependency on @lambdacurry/forms, and it’s using the wildcard ("*") range. To avoid unpredictable pulls and ensure consistency with your new 0.19.2 release, please pin it to ^0.19.2:

• packages/forms-docs/package.json

-   "@lambdacurry/forms": "*",
+   "@lambdacurry/forms": "^0.19.2",

This will keep your workspaces and external consumers all on the same patch line.

Committable suggestion skipped: line range outside the PR's diff.

🤖 Prompt for AI Agents
In packages/components/package.json at line 3, update the version of the
@lambdacurry/forms dependency from "*" to "^0.19.2" to align with the new
release version and ensure consistent dependency resolution across downstream
packages.

"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
Expand Down