Skip to content

Commit

Permalink
chore(ci): change release-it git config; (#5512)
Browse files Browse the repository at this point in the history
  • Loading branch information
DigitalBrainJS committed Jan 31, 2023
1 parent 46a650c commit 9957377
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/helpers/readBlob.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const readBlob = async function* (blob) {
} else if (blob.arrayBuffer) {
yield await blob.arrayBuffer()
} else if (blob[asyncIterator]) {
yield* asyncIterator.call(blob);
yield* blob[asyncIterator]();
} else {
yield blob;
}
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,8 @@
"push": true,
"commit": true,
"tag": true,
"requireCommits": false
"requireCommits": false,
"requireCleanWorkingDir": false
},
"github": {
"release": true,
Expand Down

0 comments on commit 9957377

Please sign in to comment.