@jinntec/fore 3.2.0 → 3.3.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
@@ -198,17 +198,14 @@ npx cypress run
198
198
 
199
199
  ## Building a package
200
200
 
201
- ```npm run build``` creates two bundles in 'dist' directory.
201
+ ```npm run build``` creates two bundles in the `dist/` directory using Vite + esbuild:
202
202
 
203
- * fore.js - contains just the Fore classes without dependencies and is suitable for creating your own app-specific bundle
204
- * fore-all.js contains everything in one bundle (incl. dependencies) and is the easiest way to use it in your own project with a single module import.
205
- The package is still huge but is expected to shrink massively.
203
+ * `fore.js` production bundle: minified, console output stripped, no devtools
204
+ * `fore-dev.js` development bundle: minified but retains console output and includes the Fore devtools panel
206
205
 
207
- Include the repective bundle in your webpage with a module import:
208
- ```
209
- <script type="module">
210
- import 'dist/fore-all.js';
211
- </script>
206
+ Include the bundle in your webpage with a module import:
207
+ ```html
208
+ <script type="module" src="dist/fore.js"></script>
212
209
  ```
213
210
 
214
211
  ## Giant shoulders