Skip to content
Advertisement

How to delete a file in NX generator

According to https://nx.dev/recipes/generators/creating-files

Generators provide an API for managing files within your workspace. You can use generators to do things such as create, update, move, and delete files.

it’s possible to delete files in an NX generator.

I have the following code that generates a node application but I want to delete some of the generated files.

JavaScript

Output

JavaScript

What API is used for deleting files?

Advertisement

Answer

Turned out to be very simple.

tree.delete(filePath)

In my case,

JavaScript
User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement