From 85f966b5be9e0b91de40738516e9c2f3d9e2ba6d Mon Sep 17 00:00:00 2001 From: Michael Romashov Date: Wed, 22 Jan 2025 23:46:46 -0500 Subject: [PATCH] docs: housekeeping --- README.md | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 757822f..b95927c 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,9 @@ Mach also allows you to create nested instruments, enabling you to bundle MSFS A ## Usage +> [!IMPORTANT] +> Please ensure that you are using Node 22! + ### CLI #### Options @@ -158,14 +161,3 @@ module.exports = { ], }; ``` - - -## MSFS Avionics Framework Compatibility - -For compatibility with Mach, a modification must be made to the `msfs-avionics` source code: -```diff -# src/sdk/components/FSComponent.ts -- [357] if (typeof type === 'function' && type.name === 'Fragment') { -+ [357] if (typeof type === 'function' && type.name === Fragment.name) { -``` -These changes are also available through the [`@synaptic-simulations/msfssdk`](https://www.npmjs.com/package/@synaptic-simulations/msfssdk) npm package.