Create a new Lerna repo or upgrade an existing repo to the current version of Lerna
75
{
"context": "This evaluation assesses how well the engineer uses Lerna's package publishing capabilities, specifically the ability to publish packages with custom npm dist-tags. The focus is on proper usage of Lerna's publish command and dist-tag options.",
"type": "weighted_checklist",
"checklist": [
{
"name": "Lerna Import",
"description": "Code correctly imports or requires the Lerna package (e.g., using require('lerna') or importing from '@lerna/publish' or related Lerna modules)",
"max_score": 15
},
{
"name": "Publish Command Usage",
"description": "Code uses Lerna's publish command or publish API programmatically (not manual npm publish commands)",
"max_score": 25
},
{
"name": "Dist-Tag Configuration",
"description": "Code correctly passes or configures the --dist-tag option to specify custom npm dist-tags (e.g., 'beta', 'next', 'canary')",
"max_score": 30
},
{
"name": "Changed Package Detection",
"description": "Code leverages Lerna's capability to detect which packages have changed (either implicitly through publish command or explicitly through changed detection)",
"max_score": 15
},
{
"name": "Publish Result Handling",
"description": "Code properly captures and returns information about published packages including package names, versions, and dist-tags used",
"max_score": 15
}
]
}Install with Tessl CLI
npx tessl i tessl/npm-lerna--initdocs
evals
scenario-1
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
scenario-9
scenario-10