DEV Community

Discussion on: Automating your package deployment in an Nx Monorepo with Changeset

Collapse
 
jmcdo29 profile image
Jay McDoniel • Edited

From a (very) brief overview of the command, yeah, rush's change looks similar to the changeset tool, difference really being is it another package to bring in or already part of the toolset

Nx actually doesn't use Nest's CLI under the hood, but uses tsc or webpack where applicable. When building packages, the Typescript compiler gets used, and when building applications, usually the webpack compiler is picked (re-compiling on save is still possible). And there's ways to plug in Nest's CLI plugins (like swagger and GraphQL) to the Nx build step as well.

You could probably build your own executor if you wanted to use Nest's CLI though