From ee5d5a4404f37c9da5c27c990ae2d67fed87c640 Mon Sep 17 00:00:00 2001 From: ralphwetzel Date: Sun, 7 May 2023 20:45:39 +0200 Subject: [PATCH] Let node-red-mcu handle the manifests for its nodes --- mcu_plugin.js | 8 ++++---- package.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/mcu_plugin.js b/mcu_plugin.js index 82803c6..fc324a9 100644 --- a/mcu_plugin.js +++ b/mcu_plugin.js @@ -1381,11 +1381,11 @@ module.exports = function(RED) { if (n.type in type2manifest) { - let mp = type2manifest[n.type]; + // let mp = type2manifest[n.type]; - if (mp.length > 0) { - manifest.include_manifest(`$(MCUROOT)/${type2manifest[n.type]}`); - } + // if (mp.length > 0) { + // manifest.include_manifest(`$(MCUROOT)/${type2manifest[n.type]}`); + // } return; } diff --git a/package.json b/package.json index 5ef1e5a..7304e83 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@ralphwetzel/node-red-mcu-plugin", - "version": "1.3.1", + "version": "1.3.2", "description": "Plugin to integrate Node-RED MCU Edition into the Node-RED Editor", "node-red": { "version": ">=2.0.0 <=3.0.2",