srctree

Gregory Mullen parent 329803c5 35556a70
add docs step

build.zig added: 22, removed: 6, total 16
@@ -46,6 +46,15 @@ pub fn build(b: *std.Build) !void {
const test_step = b.step("test", "Run unit tests");
test_step.dependOn(&run_lib_unit_tests.step);
 
const docs = b.addObject(.{ .name = "verse", .root_module = verse_lib });
const install_docs = b.addInstallDirectory(.{
.source_dir = docs.getEmittedDocs(),
.install_dir = .prefix,
.install_subdir = "docs",
});
const docs_step = b.step("docs", "Build Verse Docs");
docs_step.dependOn(&install_docs.step);
 
const examples = [_][]const u8{
"basic", "cookies", "template", "endpoint", "auth-cookie",
"request-userdata", "api", "websocket",
 
build.zig.zon added: 22, removed: 6, total 16
@@ -8,6 +8,6 @@
.paths = .{
"build.zig",
"build.zig.zon",
"src",
"src/",
},
}
 
src/verse.zig added: 22, removed: 6, total 16
@@ -27,6 +27,13 @@ pub const ClientError = errors.ClientError;
pub const NetworkError = errors.NetworkError;
pub const Error = errors.Error;
 
test "verse" {
@import("std").testing.refAllDecls(@This());
comptime {
// Actually build docs
_ = &@This();
}
 
test "verse" {
std.testing.refAllDecls(@This());
}
 
const std = @import("std");