Skip to content

Commit adfce4c

Browse files
authored
fix: configurations (#4)
1 parent 6e6f6ee commit adfce4c

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

.releaserc.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,12 @@
44
],
55
"ci": true,
66
"plugins": [
7-
"@semantic-release/commit-analyzer",
7+
["@semantic-release/commit-analyzer", {
8+
"preset": "angular",
9+
"releaseRules": [
10+
{"type": "docs", "scope": "README", "release": "patch"}
11+
]
12+
}],
813
"@semantic-release/release-notes-generator",
914
"@semantic-release/npm",
1015
"@semantic-release/github"

src/AbortError.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
export class AbortError extends Error {
2+
/** @internal */
23
public constructor() {
34
super("AbortError");
45
}

tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@
2323
"strict": true,
2424
"sourceMap": true,
2525
"composite": false,
26-
"declaration": true
26+
"declaration": true,
27+
"stripInternal": true
2728
},
2829
"files": [
2930
"./src/index.ts"

0 commit comments

Comments
 (0)