nx/docs/courses/pnpm-nx-next/lessons/02-run-tasks.md

550 B

title videoUrl duration
Run and Manage Tasks Efficiently Using Nx https://youtu.be/CJLRkzRrcjg 1:56

In this lesson, you'll learn how to use Nx to run your PNPM workspace's package.json scripts. So rather than running:

pnpm --filter @tasker/web build

you would run:

pnpm nx build @tasker/web

We'll cover the syntax for running both single tasks and multiple tasks, helping you understand how to leverage Nx's task execution capabilities.