From 70931acfdec141477fc6c8f32167b4552d2a3ed2 Mon Sep 17 00:00:00 2001 From: Zakary Kamal Ismail Date: Wed, 16 Oct 2019 20:55:00 -0400 Subject: [PATCH] fix(cli): Prettify cli/index.ts (#1072) --- cli/index.ts | 17 ++++++++++++----- package.json | 2 +- 2 files changed, 13 insertions(+), 6 deletions(-) diff --git a/cli/index.ts b/cli/index.ts index ce3e44b5..50f85f65 100644 --- a/cli/index.ts +++ b/cli/index.ts @@ -14,7 +14,14 @@ import * as zlib from 'zlib'; import { createStore, loadAndBundleSpec, Redoc } from 'redoc'; import { watch } from 'chokidar'; -import { createReadStream, existsSync, readFileSync, ReadStream, writeFileSync, lstatSync } from 'fs'; +import { + createReadStream, + existsSync, + readFileSync, + ReadStream, + writeFileSync, + lstatSync, +} from 'fs'; import * as mkdirp from 'mkdirp'; import * as YargsParser from 'yargs'; @@ -282,13 +289,13 @@ async function getPageHTML( ssr ? 'hydrate(__redoc_state, container);' : `init("spec.json", ${JSON.stringify(redocOptions)}, container)` - }; + }; `, redocHead: ssr ? (cdn - ? '' - : ``) + css + ? '' + : ``) + css : '', title: title || spec.info.title || 'ReDoc documentation', disableGoogleFont, @@ -368,7 +375,7 @@ function getObjectOrJSON(options) { } } catch (e) { console.log( - `Encountered error:\n\n${options}\n\nis neither a file with a valid JSON object neither a stringified JSON object.` + `Encountered error:\n\n${options}\n\nis neither a file with a valid JSON object neither a stringified JSON object.`, ); handleError(e); } diff --git a/package.json b/package.json index 353e8001..710464de 100644 --- a/package.json +++ b/package.json @@ -40,7 +40,7 @@ "bundle": "npm run bundle:clean && npm run bundle:lib && npm run bundle:standalone", "declarations": "tsc --emitDeclarationOnly -p tsconfig.lib.json && cp -R src/types typings/", "stats": "webpack --env.standalone --json --profile --mode=production > stats.json", - "prettier": "prettier --write \"src/**/*.{ts,tsx}\"", + "prettier": "prettier --write \"cli/index.ts\" \"src/**/*.{ts,tsx}\"", "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 1", "lint": "tslint --project tsconfig.json", "benchmark": "node ./benchmark/benchmark.js",