How to exclude all module inside directory #334
Unanswered
rrifafauzikomara
asked this question in
Q&A
Replies: 1 comment 10 replies
-
We recently improved how packages are found (#330), so make sure you are on the latest version of Melos. You can ignore specific paths or all paths matched by glob expression with the packages:
# Include the package at the workspace root.
- .
# Include only the package in directory a.
- a
# Include all the packages in direct child directories of directory b.
- b/*
# Include all the packages in child directories of directory c, at any level.
- c/**
ignore:
# Ignore the package in b/d but not any other package in b.
- b/d
# Ignore all packages in a directoy named example at any level in directory c.
- c/**/example This configuration includes all packages in the repo, except those in packages:
- '**'
ignore:
- features/** |
Beta Was this translation helpful? Give feedback.
10 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
For example, I have two modules namely
home
andauth
inside the directoryfeatures
The path for that modules is like this:
If I want to include all the modules inside
features
, I add them like this:But how if I want to exclude all the modules inside
features
? So all the modules insidefeatures
will not affected by melosBeta Was this translation helpful? Give feedback.
All reactions