@tomorrowevening/theatre-browser-bundles
v1.0.28
Published
A custom build of Theatre.js that you can use via a `<script>` tag rather than using a bundler.
Readme
Theatre.js browser bundles
A custom build of Theatre.js that you can use via a <script> tag rather than using a bundler.
How to use
There are currently two builds:
dist/core-and-studio.jsdist/core-only.min.js
As the names imply, one includes both @tomorrowevening/theatre-studio and @tomorrowevening/theatre-core, while the other is a minified version of @tomorrowevening/theatre-core.
Example:
<script src="path/to/core-and-studio.js"></script>
<script>
// here, core is equal to `import * as core from '@tomorrowevening/theatre-core`
const core = Theatre.core
// here, studio is equal to `import studio from '@tomorrowevening/theatre-studio`.
// Note this would be undefined if you're using `core-only.min.js`
const studio = Theatre.studio
// only call this if you're using the core-and-studio.js bundle
studio.initialize()
const project = core.getProject("My project")
const sheet = project.sheet("...")
// and so on...
</script>