بنقرة واحدة
install-package
Installing a package dependency
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Installing a package dependency
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف 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.