From 6478aa0951fbdd1812ce3754c76ae47bf2206129 Mon Sep 17 00:00:00 2001
From: Ryan Oldenburg <guzba8@gmail.com>
Date: Sat, 27 Feb 2021 15:41:00 -0600
Subject: [PATCH] add docs command

---
 pixie.nimble | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/pixie.nimble b/pixie.nimble
index 05e7ea1..b7359c5 100644
--- a/pixie.nimble
+++ b/pixie.nimble
@@ -12,3 +12,6 @@ requires "zippy >= 0.3.5"
 requires "flatty >= 0.1.3"
 requires "nimsimd >= 1.0.0"
 requires "bumpy >= 1.0.2"
+
+task docs, "Generate API documents":
+  exec "nim doc --index:on --project --out:docs --hints:off src/pixie.nim"