From 0ba3e5e5f5ef3fc790a75ff9f8fffb431042bcd1 Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Sun, 25 Jun 2023 04:59:59 -0400 Subject: [PATCH] fix: releaserc missing from templates --- src/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/index.ts b/src/index.ts index 430df51..9e4f9c2 100644 --- a/src/index.ts +++ b/src/index.ts @@ -20,6 +20,7 @@ export default async function (): Promise { extends: ["presetter-preset-strict"], template: { ".github/workflows/ci.yml": resolve(TEMPLATES, "ci.yml"), + ".releaserc.json": resolve(TEMPLATES, ".releaserc.json"), }, noSymlinks: [".github/workflows/ci.yml"], variable: DEFAULT_VARIABLE,