Skip to content

Commit

Permalink
Run prettier, separate viz plugins by new line
Browse files Browse the repository at this point in the history
  • Loading branch information
guerler committed Nov 26, 2024
1 parent f6395d6 commit f1a30a2
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion client/gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down

0 comments on commit f1a30a2

Please sign in to comment.