From 21e80e1be676eeef53809dae6a9601b3663fa27e Mon Sep 17 00:00:00 2001 From: Steven Date: Mon, 5 Dec 2022 17:18:00 -0600 Subject: [PATCH] fix: gitignore should include release.config.js --- .gitignore | 1 + release.config.js | 4 ++++ 2 files changed, 5 insertions(+) create mode 100644 release.config.js diff --git a/.gitignore b/.gitignore index 769b6d58..289d85fd 100644 --- a/.gitignore +++ b/.gitignore @@ -21,6 +21,7 @@ dist/**/*.js !yarn.lock !.circleci !.github +!release.config.js !.*ignore !readme.md !examples/ diff --git a/release.config.js b/release.config.js new file mode 100644 index 00000000..8ce3153d --- /dev/null +++ b/release.config.js @@ -0,0 +1,4 @@ +module.exports = { + branches: ['main'], + tagFormat: '${version}', +}