I have a mono repo set up for my Ionic/Angular project using multiple folders. No framework is being used here, just angular.json.
My angular.json file, where my projects are located under /apps:
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"newProjectRoot": "apps",
"projects": {
"app-one": {
"projectType": "application",
"root": "",
"sourceRoot": "src",
// extra config...
},
"app-two": {
// extra config...
},
},
}
I see WebNative says it has support for plain-jane mono repo structure such as this, but it does not detect it.
How do I tell WebNative that I have multiple project folders and where they are located - should it parse angular.json to determine this?
It is not strictly needed for my project, but it would be nice to have.
Thanks!
I have a mono repo set up for my Ionic/Angular project using multiple folders. No framework is being used here, just
angular.json.My
angular.jsonfile, where my projects are located under/apps:{ "$schema": "./node_modules/@angular/cli/lib/config/schema.json", "version": 1, "newProjectRoot": "apps", "projects": { "app-one": { "projectType": "application", "root": "", "sourceRoot": "src", // extra config... }, "app-two": { // extra config... }, }, }I see WebNative says it has support for plain-jane mono repo structure such as this, but it does not detect it.
How do I tell WebNative that I have multiple project folders and where they are located - should it parse
angular.jsonto determine this?It is not strictly needed for my project, but it would be nice to have.
Thanks!