I'm trying to add an exception to my .gitignore file to include my team's custom npm packages in our repository, so we can work with vendors without giving them the password to our private account.
I'm trying this:
node_modules/
!node_modules/@our-team
But .gitignore does not pick it up and start including that folder. Any ideas?
I'm on Windows but need to support Mac as well.