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 3712e17 commit 5758129Copy full SHA for 5758129
package.json
@@ -27,7 +27,7 @@
27
"stats": "node tasks/stats.js",
28
"build": "npm run preprocess && npm run bundle && npm run header && npm run stats",
29
"cibuild": "npm run preprocess && node tasks/cibundle.js",
30
- "watch": "node tasks/watch_plotly.js",
+ "watch": "node tasks/watch.js",
31
"lint": "eslint . || true",
32
"lint-fix": "eslint . --fix",
33
"pretest": "node tasks/pretest.js",
tasks/watch.js
@@ -0,0 +1,6 @@
1
+var makeWatchifiedBundle = require('./util/watchified_bundle');
2
+var noop = function() {};
3
+
4
+// make a watchified bundle for plotly.js and run it!
5
+var watchifiedBundle = makeWatchifiedBundle(noop);
6
+watchifiedBundle();
tasks/watch_plotly.js
0 commit comments