Skip to content

Commit

Permalink
fix: configurations (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
giladgd authored Aug 16, 2023
1 parent 6e6f6ee commit adfce4c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 6 additions & 1 deletion .releaserc.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@
],
"ci": true,
"plugins": [
"@semantic-release/commit-analyzer",
["@semantic-release/commit-analyzer", {
"preset": "angular",
"releaseRules": [
{"type": "docs", "scope": "README", "release": "patch"}
]
}],
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github"
Expand Down
1 change: 1 addition & 0 deletions src/AbortError.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
export class AbortError extends Error {
/** @internal */
public constructor() {
super("AbortError");
}
Expand Down
3 changes: 2 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@
"strict": true,
"sourceMap": true,
"composite": false,
"declaration": true
"declaration": true,
"stripInternal": true
},
"files": [
"./src/index.ts"
Expand Down

0 comments on commit adfce4c

Please sign in to comment.