tellur-live 0.2.0

Live-preview server for tellur projects with hot rebuild
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub mod build_watch;
pub mod plugin;
pub mod server;
pub mod startup_info;

pub use build_watch::{
    describe_build, run_build_once, AutoBuildOptions, CompileSnapshot, CompileState, CompileStatus,
};
pub use plugin::{HotReloadPlugin, PluginLoadError};
pub use server::{serve, ServerOptions};

// The plugin authoring contract now lives in `tellur-plugin`. Re-export it so
// existing call sites — `tellur_live::export_timeline!`, the demo plugins, and
// the server's `TimelineInfo` — keep reaching it through `tellur_live`.
pub use tellur_plugin::{
    export_legacy_timeline, export_timeline, export_timeline_collection, single_timeline,
    single_timeline_with_canvas, LegacyTimeline, SingleTimeline, TimelineCollection, TimelineInfo,
};