Skip to content

Commit

Permalink
editor setup: semantic-release from local
Browse files Browse the repository at this point in the history
  • Loading branch information
riuandg5 committed Aug 8, 2023
1 parent 6c8c043 commit 0d60c37
Show file tree
Hide file tree
Showing 5 changed files with 7,882 additions and 1,517 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
node_modules/
lib/
coverage/
.env
4 changes: 4 additions & 0 deletions .husky/post-commit
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"

npm run release:check
23 changes: 23 additions & 0 deletions .releaserc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"branches": ["main"],
"ci": false,
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/changelog",
{
"changelogFile": "CHANGELOG.md"
}
],
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": ["CHANGELOG.md", "package.json", "package-lock.json"]
}
],
"@semantic-release/github"
],
"preset": "angular"
}
Loading

0 comments on commit 0d60c37

Please sign in to comment.