Optiq
Optiq

Reputation: 3202

generating NestJS module in nrwl nx throws unhandled exception error

I'm trying to generate a NestJS module from the cli in my Nrwl nx project and am getting an error saying

An unhandled exception occurred: Schematic "module" not found in collection "@nrwl/nest".

I'm trying to generate it with

ng g @nrwl/nest:module my-new-module-name

is this the proper way to do this in Nrwl or is there something else we should be doing?

Upvotes: 0

Views: 659

Answers (1)

Maciej Sikorski
Maciej Sikorski

Reputation: 773

There is no such schematic enter image description here

You can only use that one to generate nestjs module enter image description here

Upvotes: 2

Related Questions