We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f355b3 commit feaf164Copy full SHA for feaf164
2 files changed
devtools/test_dashboard/build.mjs
@@ -0,0 +1,7 @@
1
+import { build } from 'esbuild';
2
+import { localDevConfig } from '../../esbuild-config.mjs';
3
+
4
+// Build plotly.js to be used locally, such as when generating the schema.
5
+// This is the same process used in the test dashboard server script, but
6
+// run only once.
7
+build(localDevConfig);
package.json
@@ -28,7 +28,7 @@
28
"bundle": "node tasks/bundle.mjs",
29
"extra-bundles": "node tasks/extra_bundles.mjs",
30
"locales": "node tasks/locales.js",
31
- "schema": "node tasks/schema.mjs",
+ "schema": "node devtools/test_dashboard/build.mjs && node tasks/schema.mjs",
32
"stats": "node tasks/stats.js",
33
"find-strings": "node tasks/find_locale_strings.js",
34
"preprocess": "node tasks/preprocess.js",
0 commit comments