From 674d621af5dd1c096ff514fabfc46773a7b4950a Mon Sep 17 00:00:00 2001 From: yflory Date: Wed, 26 Feb 2025 18:32:22 +0100 Subject: [PATCH] Fix build issue --- scripts/copy-components.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/copy-components.js b/scripts/copy-components.js index 5809bb043..6cd95f3e5 100644 --- a/scripts/copy-components.js +++ b/scripts/copy-components.js @@ -50,7 +50,7 @@ Fse.rmSync(oldComponentsPath, { recursive: true, force: true }); ].forEach(l => { let s = l; if (s === 'tweetnacl') { - s += '-old'; + //s += '-old'; } const source = Path.join("node_modules", s); const destination = Path.join(componentsPath, l);