Skip to content

Commit

Permalink
feat: reduce hostname complexity
Browse files Browse the repository at this point in the history
  • Loading branch information
gajus committed May 8, 2021
1 parent e246e1e commit ce92ae3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/bin/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {
} from 'chalk';
import JSON5 from 'json5';
import {
nanoid,
customAlphabet,
} from 'nanoid';
import {
io,
Expand Down Expand Up @@ -90,6 +90,8 @@ const argv = yargs
.wrap(80)
.parse();

const nanoid = customAlphabet('0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz', 6);

const roarrConfigurationPath = findNearestRoarrConfigurationPath();

let filterFunction: FilterFunction | null = null;
Expand Down

0 comments on commit ce92ae3

Please sign in to comment.