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
This line is preventing me to exclude the common/temp/node_modules directory of my monorepo and any "subproject" node_modules directory 😢
e.g. If I md-magic --path '**/*.md' --ignore 'common/temp/node_modules/**', the tool tries to modify its own examples because it finds it in the common/temp/node_modules directory (which is the global store for every dependency of the monorepo).
Is it possible to replace it with something more robust? Maybe just use !**/node_modules/** (⚠️ if it works)?
The text was updated successfully, but these errors were encountered:
bbenoist
added a commit
to bbenoist/markdown-magic
that referenced
this issue
Apr 22, 2021
This line is preventing me to exclude the
common/temp/node_modules
directory of my monorepo and any "subproject"node_modules
directory 😢e.g. If I
md-magic --path '**/*.md' --ignore 'common/temp/node_modules/**'
, the tool tries to modify its own examples because it finds it in thecommon/temp/node_modules
directory (which is the global store for every dependency of the monorepo).Is it possible to replace it with something more robust? Maybe just use⚠️ if it works)?
!**/node_modules/**
(The text was updated successfully, but these errors were encountered: