Appflow: Mac OS - 2021.10 broken

Is mac OS - 2021.10 giving problems to anyone else? When I try to build my Ionic/Vue project I get this result:

[01:55:07]: -------------------------
[01:55:07]: --- Step: upload_logs ---
[01:55:07]: -------------------------
+------------------+----------------------+
|              Lane Context               |
+------------------+----------------------+
| DEFAULT_PLATFORM | ios                  |
| PLATFORM_NAME    | android              |
| LANE_NAME        | android deploy_build |
| PROJECT_WEB_DIR  | dist                 |
+------------------+----------------------+
[01:55:11]: Exit status of command 'npm run build' was 1 instead of 0.

> jetfoiler@1.13.12 build
> vue-cli-service build

process.env.NODE_ENV=production

-  Building for production...
 ERROR  Error: Cannot find module 'vue-loader-v16/package.json'
Require stack:
- /builds/kaiconcepts/jetfoil-mobile-app/node_modules/@vue/cli-service/lib/config/base.js
- /builds/kaiconcepts/jetfoil-mobile-app/node_modules/@vue/cli-service/lib/Service.js
- /builds/kaiconcepts/jetfoil-mobile-app/node_modules/@vue/cli-service/bin/vue-cli-service.js
Error: Cannot find module 'vue-loader-v16/package.json'

This started happening yesterday when 2021.10 became the active environment. When I switch back to 2021.09 everything works fine.

The answer is the add the following to your package.json under dev dependancies and then run npm install :

"vue-loader-v16": "npm:vue-loader@^16.1.0",
"fork-ts-checker-webpack-plugin-v5": "npm:fork-ts-checker-webpack-plugin@^5.0.11"

Not sure how to add them via command line as I’ve never seen the “ npm: ” prefix before on the version side of things.