There is a version mismatch for pnpm specified in the root and motia package's package.json files. This can cause issues in CI/CD pipelines and should be resolved to ensure consistency across environments.
## Bug Description The `packageManager` field specifies different pnpm versions in two `package.json` files: - **Root** `motia-js/package.json`: `"packageManager": "pnpm@10.11.0"` - **motia package** `packages/motia/package.json`: `"packageManager": "pnpm@10.19.0"` This can cause issues with: - Corepack resolving different pnpm versions depending on which directory you're in - CI/CD pipelines getting different behavior - Lockfile format differences between pnpm versions ## Expected Behavior Both files should specify the same pnpm version. Since the root manages the workspace, it should be the source of truth, and the nested package should either match or omit `packageManager` (inheriting from root). ## Environment - motia v1.0.0-rc.22 - Files: `motia-js/package.json`, `motia-js/packages/motia/package.json`