From c5d6502464d329535c6c354fe9f37b0184f31659 Mon Sep 17 00:00:00 2001 From: ITOH Date: Sun, 27 Feb 2022 21:17:02 +0100 Subject: [PATCH] fix(dnt): add transformers (#2076) * fix(dnt): add transformers * Update dnt.ts --- dnt.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/dnt.ts b/dnt.ts index 8ae7b871e..e2279cf02 100644 --- a/dnt.ts +++ b/dnt.ts @@ -37,6 +37,10 @@ await build({ name: "./types", path: "types/mod.ts", }, + { + name: "./transformers", + path: "transformers/mod.ts", + }, { name: "./plugins", path: "plugins/mod.ts", @@ -97,6 +101,9 @@ await build({ "types": [ "./types/types/mod.d.ts", ], + "transformers": [ + "./types/transformers/mod.d.ts", + ], "plugins": [ "./types/plugins/mod.d.ts", ],