Skip to content

Commit 6e6ba8c

Browse files
authored
Merge pull request #46 from stoplightio/fix/increase-key-attempts
chore: increase suggest key attempts
2 parents fc3f606 + fc79d97 commit 6e6ba8c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: 2.1
22

33
orbs:
44
node: circleci/[email protected]
5-
browser-tools: circleci/browser-tools@1.2.4
5+
browser-tools: circleci/browser-tools@1.4.4
66

77
executors:
88
linux:

lib/bundle/util/key-generator.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const { safePointerToPath, parse } = require("../../util/url");
55
const { basename, extname } = require("@stoplight/path");
66
const { get } = require("./object");
77

8-
const MAX_ATTEMPTS = 20;
8+
const MAX_ATTEMPTS = 1000;
99

1010
function prettify (key) {
1111
return capitalize(key.replace(/(?:\.|[\\/]+)([a-z])?/g, (_, letter, i) => {

0 commit comments

Comments
 (0)