We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I don't know how it behaved in the past, but nowadays "lerna.json" without "packages" is perfectly valid - IMO with both lerna and lerna-lite.
When there is a lerna.json, created by lerna init (lerna-lite or lerna), as simple as
lerna init
{ "$schema": "node_modules/@lerna-lite/cli/schemas/lerna-schema.json", "version": "0.0.0" }
> ultra --info
only shows this error message
error Cannot read properties of undefined (reading 'length')
However, with
{ "$schema": "node_modules/lerna/schemas/lerna-schema.json", "packages": [ "packages/*" ], "version": "0.0.0" }
it works:
Detected workspaces: yarn, lerna Workspace yarn with npm 0 root at .
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I don't know how it behaved in the past, but nowadays "lerna.json" without "packages" is perfectly valid - IMO with both lerna and lerna-lite.
When there is a lerna.json, created by
lerna init
(lerna-lite or lerna), as simple asonly shows this error message
However, with
it works:
The text was updated successfully, but these errors were encountered: