From d7cfd83a84422957ddeb3f357139dcfb754218bb Mon Sep 17 00:00:00 2001 From: Daniel Imms Date: Sun, 26 May 2019 12:00:02 -0700 Subject: [PATCH] Explain addon imports in start.js --- demo/start.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/demo/start.js b/demo/start.js index b523b761..c9b90c8b 100644 --- a/demo/start.js +++ b/demo/start.js @@ -20,6 +20,9 @@ startServer(); * For production builds see `webpack.config.js` in the root directory. If that is built the demo * can use that by switching out which `Terminal` is imported in `client.ts`, this is useful for * validating that the packaged version works correctly. + * + * The addons are not webpacked right now and are built directly to `lib/` via `tsc` as they are + * the legacy format (`applyAddon`) and will be removed soon anyway. */ const clientConfig = { entry: path.resolve(__dirname, 'client.ts'),