Skip to content

Commit 91c0923

Browse files
committed
chore: add config
1 parent 0863319 commit 91c0923

File tree

2 files changed

+40
-0
lines changed

2 files changed

+40
-0
lines changed

.releaserc

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"branches": [
3+
"main",
4+
{
5+
"name": "beta",
6+
"prerelease": true
7+
}
8+
],
9+
"plugins": [
10+
"@semantic-release/commit-analyzer",
11+
"@semantic-release/release-notes-generator",
12+
"@semantic-release/changelog",
13+
"@semantic-release/github",
14+
[
15+
"@semantic-release/git",
16+
{
17+
"assets": [
18+
"CHANGELOG.md"
19+
],
20+
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
21+
}
22+
]
23+
],
24+
"tagFormat": "${version}"
25+
}

deno.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"tasks": {
3+
"test": "deno test --import-map=./_test_import_map.json --doc",
4+
"build:npm": "deno run -A _tools/build_npm.ts"
5+
},
6+
"fmt": {
7+
"exclude": ["CHANGELOG.md", "CODE_OF_CONDUCT.md"]
8+
},
9+
"lint": {
10+
"exclude": ["CHANGELOG.md", "CODE_OF_CONDUCT.md"]
11+
},
12+
"test": {
13+
"exclude": ["CHANGELOG.md", "CODE_OF_CONDUCT.md"]
14+
}
15+
}

0 commit comments

Comments
 (0)