Skip to content

Commit

Permalink
feat: special character check (#797)
Browse files Browse the repository at this point in the history
* feat: add config option for special character handling

* chore: update dist files
  • Loading branch information
kellertk authored Aug 24, 2023
1 parent fbbf385 commit a962633
Show file tree
Hide file tree
Showing 4 changed files with 47 additions and 29 deletions.
9 changes: 6 additions & 3 deletions dist/cleanup/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/cleanup/src/helpers.d.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

63 changes: 39 additions & 24 deletions dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ export async function run() {
switch (true) {
case specialCharacterWorkaround:
// 😳
maxRetries = Number.MAX_SAFE_INTEGER;
disableRetry = false;
maxRetries = 12;
break;
case maxRetries < 1:
maxRetries = 1;
Expand Down

0 comments on commit a962633

Please sign in to comment.