Print a script's traceback to stderr, verbatim from the runtime.
(msg: &str)
| 76 | |
| 77 | /// Print a script's traceback to stderr, verbatim from the runtime. |
| 78 | pub fn traceback(msg: &str) { |
| 79 | eprintln!("{msg}"); |
| 80 | } |
| 81 | |
| 82 | /// Summary printed by `edge build` after vendoring runtime + packages + scripts into dist/. |
| 83 | pub fn build_report(dir: &std::path::Path, runtime_files: usize, packages: usize, scripts: usize, size: u64, elapsed: std::time::Duration) { |