Skip to content

Commit

Permalink
Format code with prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
NeverMendel committed Feb 1, 2024
1 parent 84d12f6 commit 92b97cf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import path from 'path';

const yargs = _yargs;

const maxYargsWidth = 130
const yargsWidth = Math.min(yargs.terminalWidth, maxYargsWidth)
const maxYargsWidth = 130;
const yargsWidth = Math.min(yargs.terminalWidth, maxYargsWidth);

let argv = yargs(process.argv.slice(2))
.detectLocale(false)
Expand Down Expand Up @@ -103,7 +103,7 @@ function takeScreenshot(argv) {
height: argv.height,
},
bindAddress: '0.0.0.0',
headless: "new",
headless: 'new',
args: [
'--no-sandbox',
'--headless',
Expand Down
2 changes: 1 addition & 1 deletion test/index.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!doctype html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
Expand Down

0 comments on commit 92b97cf

Please sign in to comment.