"!packages/node_modules" in .gitignore

What is the idea behind the !packages/node_modules in .gitignore? How is it supposed to commit changes in NR?

In the .gitignore file, a few lines further up, is a rule to ignore any node_modules directories.

The ! at the start of the line you've highlighted inverts the rule - it means packages/node_modules should not be ignored.

1 Like

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.