From b1928f5228e7e31e4214bd42b274ea4c2ad6a99a Mon Sep 17 00:00:00 2001 From: "D. Moonfire" Date: Mon, 5 Sep 2022 16:49:43 -0500 Subject: [PATCH] build: removing remains of package-based system --- commitlint.config.js | 6 ------ release.config.js | 32 -------------------------------- 2 files changed, 38 deletions(-) delete mode 100644 commitlint.config.js delete mode 100644 release.config.js diff --git a/commitlint.config.js b/commitlint.config.js deleted file mode 100644 index 1080a13..0000000 --- a/commitlint.config.js +++ /dev/null @@ -1,6 +0,0 @@ -module.exports = { - extends: ["@commitlint/config-conventional"], - rules: { - "body-max-line-length": [0], - }, -}; diff --git a/release.config.js b/release.config.js deleted file mode 100644 index 15c2574..0000000 --- a/release.config.js +++ /dev/null @@ -1,32 +0,0 @@ -module.exports = { - extends: ["@commitlint/config-conventional"], - branches: ["main"], - message: - "chore(release): v${nextRelease.version} [skip ci]\n\n${nextRelease.notes}", - plugins: [ - [ - "@semantic-release/commit-analyzer", - { - preset: "conventionalcommits", - }, - ], - "@semantic-release/release-notes-generator", - "@semantic-release/npm", - [ - "semantic-release-dotnet", - { - paths: ["src/Directory.Build.props"], - }, - ], - [ - "semantic-release-nuget", - { - packArguments: ["--include-symbols", "--include-source"], - pushFiles: ["src/*/bin/Debug/*.nupkg"], - }, - ], - "@semantic-release/changelog", - "@semantic-release/git", - "@semantic-release/gitlab", - ], -};