Rust library to generate static websites

fix: workspace

+4 -4
+1 -1
.sampo/config.toml
··· 1 1 [packages] 2 2 linked = [["maudit", "maudit-macros"]] 3 - ignore = ["benchmarks/*", "examples/*", "maudit-website", "root"] 3 + ignore = ["benchmarks/*", "examples/*", "maudit-website", "root", "e2e/fixtures/*"]
+1 -1
e2e/fixtures/prefetch-prerender/Cargo.toml
··· 1 1 [package] 2 - name = "prefetch-prerender" 2 + name = "fixtures-prefetch-prerender" 3 3 version = "0.1.0" 4 4 edition = "2024" 5 5 publish = false
+2 -2
e2e/tests/test-utils.ts
··· 1 - import { spawn, execFile, type ChildProcess } from "node:child_process"; 2 - import { join, resolve, dirname } from "node:path"; 1 + import { spawn } from "node:child_process"; 2 + import { resolve, dirname } from "node:path"; 3 3 import { existsSync } from "node:fs"; 4 4 import { fileURLToPath } from "node:url"; 5 5 import { test as base } from "@playwright/test";