From 1ea0fe8cf5b0dab54b63b5ef47b9d744ef784b59 Mon Sep 17 00:00:00 2001 From: Evgeny Kochetkov Date: Mon, 15 May 2017 09:26:26 +0300 Subject: [PATCH] =?UTF-8?q?refactor(xod-arduino):=20don=E2=80=99t=20conver?= =?UTF-8?q?t=20built-ins=20to=20TPatches?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/xod-arduino/src/transpiler.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/xod-arduino/src/transpiler.js b/packages/xod-arduino/src/transpiler.js index 31e288f1..32d0fab7 100644 --- a/packages/xod-arduino/src/transpiler.js +++ b/packages/xod-arduino/src/transpiler.js @@ -404,7 +404,8 @@ const createTPatches = def( ); }), R.omit([entryPath]), - R.converge(R.zipObj, [Project.listPatchPaths, Project.listPatches]) + R.indexBy(Project.getPatchPath), + Project.listPatchesWithoutBuiltIns )(project) );