From 26f851f749bd4fefc58ac5496433299df21b3d6d Mon Sep 17 00:00:00 2001 From: Tandashi <18377875+Tandashi@users.noreply.github.com> Date: Mon, 23 Oct 2023 16:58:41 +0200 Subject: [PATCH] fix: Rename `manifest.yml` to `manifest.yaml` --- index.ts | 4 ++-- template/{manifest.yml.template => manifest.yaml.template} | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename template/{manifest.yml.template => manifest.yaml.template} (100%) diff --git a/index.ts b/index.ts index e465f67..d1943a9 100644 --- a/index.ts +++ b/index.ts @@ -41,8 +41,8 @@ async function main() { ); fse.writeFileSync( - path.join(dir, 'manifest.yml'), - await renderFile(path.join(templateDir, 'manifest.yml.template'), response) + path.join(dir, 'manifest.yaml'), + await renderFile(path.join(templateDir, 'manifest.yaml.template'), response) ); } diff --git a/template/manifest.yml.template b/template/manifest.yaml.template similarity index 100% rename from template/manifest.yml.template rename to template/manifest.yaml.template