con un clic
install-package
Installing a package dependency
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Installing a package dependency
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional SOC
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)
| 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.