(stamp: &str)
| 234 | } |
| 235 | |
| 236 | fn store_dashboard_source_stamp(stamp: &str) { |
| 237 | // Best-effort: if the stamp can't be written, the next build still checks |
| 238 | // the source stamp that `npm run build` wrote next to the dist assets. |
| 239 | if let Some(path) = dashboard_source_stamp_path() { |
| 240 | let _ = fs::write(path, stamp); |
| 241 | } |
| 242 | } |
| 243 | |
| 244 | fn collect_dashboard_source_inputs() -> Vec<PathBuf> { |
| 245 | let mut inputs = Vec::new(); |
no test coverage detected