From f1a30a2dfaf44534499c709211d91869093741c4 Mon Sep 17 00:00:00 2001 From: guerler Date: Tue, 26 Nov 2024 17:41:22 +0300 Subject: [PATCH] Run prettier, separate viz plugins by new line --- client/gulpfile.js | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/client/gulpfile.js b/client/gulpfile.js index 9cb183221a17..eda110a835b6 100644 --- a/client/gulpfile.js +++ b/client/gulpfile.js @@ -34,7 +34,17 @@ const STATIC_PLUGIN_BUILD_IDS = [ "tiffviewer", "ts_visjs", ]; -const INSTALL_PLUGIN_BUILD_IDS = ["cytoscape", "heatmap", "ngl", "msa", "openlayers", "phylocanvas", "plotly", "venn", "vizarr"]; // todo: derive from XML +const INSTALL_PLUGIN_BUILD_IDS = [ + "cytoscape", + "heatmap", + "ngl", + "msa", + "openlayers", + "phylocanvas", + "plotly", + "venn", + "vizarr", +]; // todo: derive from XML const DIST_PLUGIN_BUILD_IDS = ["new_user"]; const PLUGIN_BUILD_IDS = Array.prototype.concat(DIST_PLUGIN_BUILD_IDS, STATIC_PLUGIN_BUILD_IDS);