-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ability to ignore project files during affected commands #895
Comments
yes it would be helpful with git submodules for examples to ignore complete projects if not checked out yet |
OK! #234 found it here |
Did not get into it how should I exclude |
Add ability to ignore files from the affected check using .nxignore files Implement #895
I tried with a .nxignore file but it seems not working, the file has a single line
|
I'm going to close this issue. Thank you! |
This issue has been closed for more than 30 days. If this issue is still occuring, please open a new issue with more recent context. |
It would be great to have something like an .nxignore or an addition to nx.json to specify project files that should not trigger affected test and build. We have a couple different files that would be useful to ignore. One example is app specific documentation. We want to be able to update these files in our monorepo without triggering full apps to be built and tested.
For example a section in nx.json would allow:
“ignore”: [
“apps/**/README.md”
]
We could move these files out of project roots, but logically many of them make sense to be managed where they are.
If there is already a way to handle this and I’m missing it, let me know.
The text was updated successfully, but these errors were encountered: