From 4757a0feeed125b0e5c519fdbd909cba836f36a6 Mon Sep 17 00:00:00 2001 From: Tom Limoncelli Date: Fri, 3 May 2024 07:09:26 -0400 Subject: [PATCH] DOCS: Remind devs to run go generate (#2929) --- documentation/adding-new-rtypes.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/documentation/adding-new-rtypes.md b/documentation/adding-new-rtypes.md index b3677eb7d..acf054e03 100644 --- a/documentation/adding-new-rtypes.md +++ b/documentation/adding-new-rtypes.md @@ -328,3 +328,13 @@ Add the new file `FOO.md` to the documentation table of contents [`documentation ... ``` {% endcode %} + +## Step 9: "go generate" + +Re-generate the documentation: + +```shell +go generate ./... +``` + +This will regenerate things like the table of which providers have which features and the `dnscontrol.d.ts` file.