Practise the standard verbs for managing an npm workspace monorepo.
0 / 5 completed
1 / 5
Fill in: 'We ___ shared packages as workspace dependencies so a monorepo build always uses the local, in-progress version.'
We 'link' a dependency — the standard, established npm/yarn workspace collocation for referencing a local package. The other options aren't the recognised term here.
2 / 5
Fill in: 'Duplicated versions of the same dependency across packages can ___ install size and cause subtle mismatch bugs.'
We say duplicated versions will 'bloat' install size — the standard, natural collocation for unnecessary growth. The other options aren't idiomatic here.
3 / 5
Fill in: 'We ___ a single lockfile at the workspace root so every package resolves dependencies from one consistent tree.'
We 'maintain' a lockfile — the standard collocation for keeping a dependency-resolution file current. The other options aren't idiomatic here.
4 / 5
Fill in: 'We ___ build order across workspace packages so a package never builds before the dependency it relies on.'
We 'sequence' order — the standard collocation for arranging build steps in the right dependency order. The other options aren't idiomatic here.
5 / 5
Fill in: 'We ___ a script across every workspace package at once instead of running it manually in each folder.'
We 'run a script' — the standard, simple collocation for executing an npm command. The other options are less idiomatic here.