Loading...
Loading...
ALWAYS use when working with Nx monorepo, workspace configuration, or Angular/Nx project setup.
npx skill4agent add oguzhan18/angular-ecosystem-skills nxlibs/
├── auth/
│ ├── feature-login/
│ └── data-access/
├── products/
│ ├── feature-list/
│ └── ui/
└── shared/
├── ui/
└── utils/# Create new library
nx g @nx/angular:library --name=shared-data-access --directory=libs/shared/data-access
# Create new feature
nx g @nx/angular:component --name=user-profile --project=my-appnx affected:build # Build only changed projects
nx affected:test # Test only changed projects
nx affected:lint # Lint only changed projectsproject.json{
"build": {
"dependsOn": ["^build"]
}
}nx.jsontsconfig.base.json@nx/angular:component