Skip to content

Latest commit

 

History

History
19 lines (16 loc) · 943 Bytes

README.md

File metadata and controls

19 lines (16 loc) · 943 Bytes

Introduction to Monorepos with NPM Workspaces

Course material for the Introduction to Monorepos with NPM Workspaces course on Egghead.io - Course link

Available commands

npm run dev # run all the 3 development servers
npm run check # run all quality checks
npm run dev:utils # run the dev server for the utils package
npm run dev:blog # run the dev server for the blog package
npm run dev:dashboard # run the dev server for the dashboard package
npm run test:utils # run the tests for the utils package
npm run test:blog # run the tests for the blog package
npm run test:dashboard # run the tests for the dashboard package
npm run typecheck:utils  # run the typechecker for the utils package
npm run typecheck:blog # run the typechecker for the blog package
npm run typecheck:dashboard # run the typechecker for the dashboard package