Script for support ionic appflow monorepo
npm install @rdlabo/support-ionic-appflow-monorepo@rdlabo/support-ionic-appflow-monorepo
======================================
This script for support monorepo structure at Ionic AppFlow




Ionic AppFlow don't support monorepo structure now.
So this script will solve your problem, if your repository looks like this:
```
project
├── package.json
├── api/ -- framework like NestJS
└── {APP_DIR}/ -- capacitor apps
This script work three step.
1. Check require packages from Ionic CLI and {APP_DIR} package.json
2. Install require packages to project directory.
3. Copy file for using Ionic AppFlow from {APP_DIR}.
file from {APP_DIR} to project directory. Ionic AppFlow checked these file before npm build. So you should copy manually.-
{APP_DIR}/capacitor.config.json => ./capacitor.config.jsonYou can use this command:
`sh-session
% cp -r -f {APP_DIR}/capacitor.config.json ./
`2. Set npm script
`diff
"scripts": {
...
+ "postbuild": "npx @rdlabo/support-ionic-appflow-monorepo --path={APP_DIR}"
},
``