The Module Manager is a tool for managing modules within the project, allowing you to delete or recover specific modules (like popup, options, etc.).
Running on Root
To run the manager from the project root:
pnpm module-manager
To delete a specific module directly:
pnpm module-manager -d popup
Running on a Module
To run the manager from within a specific module directory:
pnpm start
To delete a specific module from within a module directory:
pnpm start -d popup
Advanced Deletion
To remove multiple items (e.g., tests and a specific module) in one command, list them sequentially after the -d flag:
pnpm module-manager -d tests popup
For full CLI documentation, run pnpm module-manager --help.