@malloydata/render 0.0.225-dev241231171856 → 0.0.225-dev250102225314

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/DEVELOPING.md CHANGED
@@ -8,11 +8,16 @@ The legacy renderer is deprecated but is still available and in use for features
8
8
 
9
9
  ## Viewing the renderer locally
10
10
 
11
- Storybook is used to view the renderer locally. To launch the storybook:
11
+ Storybook is used to view the renderer locally. To launch the storybook, run the storybook script in `packages/malloy-render/package.json`:
12
12
 
13
13
  ```bash
14
14
  $ npm run storybook
15
15
  ```
16
+ Or, on a Windows machine, and from the Malloy repo directory:
17
+ ```bash
18
+ $ npm run --prefix packages/malloy-render storybook-windows
19
+ ```
20
+
16
21
 
17
22
  Then navigate to the URL provided. In this storybook, you can navigate between different stories that render Malloy queries from the Malloy source code.
18
23