From 6d793ef8108a38ebf2c803211a2f28c15679a832 Mon Sep 17 00:00:00 2001 From: mineejo Date: Thu, 14 Dec 2023 16:48:52 +0300 Subject: [PATCH] chore: initial commit --- _build_npm.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/_build_npm.ts b/_build_npm.ts index 6026d77..589208a 100644 --- a/_build_npm.ts +++ b/_build_npm.ts @@ -52,3 +52,9 @@ await build({ Deno.copyFileSync("README.md", `${outDir}/README.md`); }, }); + +await Deno.writeTextFile( + `${outDir}/.npmignore`, + "_generator/\ndev_deps.ts\n", + { append: true }, +);