You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add option to configure an additional command per package
Allow Node.js projects to also run npm run clean in each package.
This is just an idea:
# mono.ymlclean:
language_command: ""# Customize the clean command for the language - This is not possible currentlylanguage_command:
- "default"# Use default command as well
- ""# Add additional commandspackage_command: ""# Customize command per package - This is possible currently with "command"package_command: # It's currently not possible to specify an array
- "default"# Use default command as well
- ""# Add additional commands per packagepre: ""# Configure pre hook on project level (not package) - This is possible currentlypost: ""# Configure post hook on project level (not package) - This is possible currently
The text was updated successfully, but these errors were encountered:
npm run clean
in each package.This is just an idea:
The text was updated successfully, but these errors were encountered: