diff --git a/Justfile b/Justfile index d97152b..1ace3ea 100644 --- a/Justfile +++ b/Justfile @@ -1,4 +1,5 @@ coverage: clean + rm -rf kcov-out zig build test -Doptimize=Debug kcov --include-pattern=src/root.zig,src/tests.zig kcov-out zig-cache/o/**/test diff --git a/build.zig.zon b/build.zig.zon index a56ca51..a051a30 100644 --- a/build.zig.zon +++ b/build.zig.zon @@ -1,20 +1,7 @@ .{ .name = "zigrc", - // This is a [Semantic Version](https://semver.org/). - // In a future version of Zig it will be used for package deduplication. .version = "0.5.0", - - // This field is optional. - // This is currently advisory only; Zig does not yet do anything - // with this value. .minimum_zig_version = "0.12.0", - - // Specifies the set of files and directories that are included in this package. - // Only files and directories listed here are included in the `hash` that - // is computed for this package. - // Paths are relative to the build root. Use the empty string (`""`) to refer to - // the build root itself. - // A directory listed here means that all files within, recursively, are included. .paths = .{ "build.zig", "build.zig.zon",