mascot-vis 3.2.7 → 3.3.1
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 +2 -1
- package/dist/mascot-cjs.cjs +1 -1
- package/dist/mascot-esm.js +2 -2
- package/dist/mascot-umd.js +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -8,9 +8,10 @@
|
|
|
8
8
|
## Build and Run Project
|
|
9
9
|
|
|
10
10
|
1. To build project one time with `npm run build` OR build automatically on save with file watching `npm run watch`. Three outputs (same content, different formats) will be built: `mascot-esm.js` for modern browsers and bundler usage (import/export), `mascot-umd.js` for direct <script> usage in browsers (global variable), and `mascot-cjs.cjs` for Node.js applications (require). No rendering support is included inside `mascot-cjs.cjs`.
|
|
11
|
+
|
|
11
12
|
2. To run the in-browser demos, start a server with `npm run start` (you need to have Python 3 installed), and load `localhost:8020` in browser; you can also start the server using Python 2 with the command `python -m SimpleHTTPServer <port>`
|
|
12
13
|
|
|
13
|
-
|
|
14
|
+
## Releasing
|
|
14
15
|
1. Ensure all intended changes are committed to `main`.
|
|
15
16
|
|
|
16
17
|
2. Run the release script with **either**:
|