I want to sync up my dev folder including various project folders, each having node_modules folder inside. I would like to exclude all node_modules subfolders.
Here is an example of my file structure:
.
├── projectOne
│ ├── index.app
│ ├── node_modules
│ ├── package.json
│ └── src
└── projectTwo
├── node_modules
├── package.json
└── src
The root folder has .SyncIgnore file for excluding specific folders and files, but I do not know how to exclude ALL node_modules subfolders.
*/node_modules do not work.