en un clic
install-package
Installing a package dependency
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Menu
Installing a package dependency
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Coding patterns and conventions (package design, types, DI, docs)
Creating a new package in the monorepo
Running CI locally with Dagger
Debugging (source maps, cache, test failures)
DevContainer runtimes, CLI tools, and version parity with Dagger
Linting and formatting (ESLint, Biome, auto-fix)
Basé sur la classification professionnelle SOC
| name | install-package |
| description | Installing a package dependency |
Reference: https://pnpm.io/workspaces
This workspace uses pnpm to manage dependencies.
This is only required if the dependency deos not yet exist in the codebase, otherwise it should already be there.
Put the dependency under the default catalog. Do not create a custom catalog key, we should encourage a single
version used consistently across the monorepo.
The only exception is adding dependencies on npm-based version of packages that are maintained in this repo. This is for rare cases to work around circular dependencies that only show up in dev environments.
Add the package to package.json's dependencies (or devDependencies). Note that packages that are "optional" or "peer" dependencies will also need it as a dev dependency in order to develop locally against it.
Run pnpm i then nx run-many -t build to actually perform the install and cache bust nx projects.