Clarify built distribution files in docs

This commit is contained in:
Vanilagy
2025-07-09 12:14:29 +02:00
parent f59a79dcf7
commit a16911874c
+4 -2
View File
@@ -27,7 +27,9 @@ ESM is preferred because it gives you tree shaking.
You can also just include the library using a script tag in your HTML:
```html
<script src="path/to/mediabunny.js"></script>
<script src="mediabunny.cjs"></script>
```
You can download the built distribution file from the [releases page](https://github.com/Vanilagy/mediabunny/releases).
This will add a `Mediabunny` object to the global scope.
You can download a built distribution file from the [releases page](https://github.com/Vanilagy/mediabunny/releases). Use the `*.cjs` builds for normal script tag inclusion, or the `*.mjs` builds for script tags with `type="module"` or direct imports via ESM. Including the `mediabunny.d.ts` declaration file in your TypeScript project will declare a global `Mediabunny` namespace.