bloom-player 2.9.9 → 2.10.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 +12 -0
- package/dist/{bloomPlayer.B0wz4fEL.js → bloomPlayer.COkOWv26.js} +13 -13
- package/dist/bloomplayer.htm +1 -1
- package/lib/dragActivityRuntime.d.ts +17 -0
- package/lib/event.d.ts +11 -0
- package/lib/index.d.ts +4 -0
- package/lib/narration.d.ts +50 -0
- package/lib/scrolling.d.ts +5 -0
- package/lib/shared.es.js +6489 -0
- package/lib/shared.es.js.map +1 -0
- package/package.json +13 -1
- package/src/shared/dragActivityRuntime.ts +6 -0
- package/src/shared/index.ts +14 -0
package/README.md
CHANGED
|
@@ -142,6 +142,18 @@ Either run `yarn storybook` (which has multiple books),
|
|
|
142
142
|
|
|
143
143
|
or run `yarn dev` (which will use `index-for-developing.html`).
|
|
144
144
|
|
|
145
|
+
To build the standalone js file that can be used from an html file:
|
|
146
|
+
|
|
147
|
+
```bash
|
|
148
|
+
yarn build:standalone
|
|
149
|
+
```
|
|
150
|
+
|
|
151
|
+
To build the library used by the Bloom Editor
|
|
152
|
+
|
|
153
|
+
```bash
|
|
154
|
+
yarn build:sharedlib
|
|
155
|
+
```
|
|
156
|
+
|
|
145
157
|
See package.json for other scripts.
|
|
146
158
|
|
|
147
159
|
### Testing with a book hosted on the web
|