@kong/icons 1.3.1-pr.45.9e2f764.0 → 1.3.1-pr.47.8940426.0

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/README.md CHANGED
@@ -134,20 +134,24 @@ Source SVG files **must**:
134
134
 
135
135
  This repository includes a Vue sandbox app (see the `/sandbox` directory) to allow you to experiment with icons.
136
136
 
137
- Before running the local dev server, you will need to run the generate command.
138
-
139
- > **Note**: You must regenerate the icons and restart the sandbox if you make changes to files outside of the `/sandbox/` directory.
137
+ The `yarn dev` command will automatically call the `generate` command to generate the icon components.
140
138
 
141
139
  To compile the icon components and start the sandbox:
142
140
 
143
141
  ```sh
144
- # Generate the Icon Components
145
- yarn generate
146
-
147
- # Start the sandbox
142
+ # Generate the Icon Components and start the sandbox
148
143
  yarn dev
149
144
  ```
150
145
 
146
+ #### Build and Preview the Development Sandbox
147
+
148
+ To run a local preview of the Sandbox site that will be deployed to GitHub Pages:
149
+
150
+ ```sh
151
+ yarn build:sandbox
152
+ yarn preview:sandbox
153
+ ```
154
+
151
155
  ### Lint and fix
152
156
 
153
157
  Lint package files, and optionally auto-fix detected issues.