From 8cda6ee36d1bd8611a9fcd98280907aa3ad911bd Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Wed, 24 Aug 2022 06:34:03 +0000 Subject: [PATCH] chore(fmt): npm run fmt --- README.md | 4 ++-- caddy/README.md | 7 ++++--- powershell/README.md | 4 ++-- 3 files changed, 8 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 275e056..f6ecd8d 100644 --- a/README.md +++ b/README.md @@ -144,8 +144,8 @@ It looks like this: `releases.js`: ```js -module.exports = function(request) { - return github(request, owner, repo).then(function(all) { +module.exports = function (request) { + return github(request, owner, repo).then(function (all) { // if you need to do something special, you can do it here // ... return all; diff --git a/caddy/README.md b/caddy/README.md index 75165bd..e0bf857 100644 --- a/caddy/README.md +++ b/caddy/README.md @@ -48,7 +48,7 @@ example.com { # turn on standard streaming compression encode gzip zstd - + # reverse proxy /api to :3000 handle_path /api/* { reverse_proxy localhost:3000 @@ -80,7 +80,7 @@ example.com { ```txt example.com { # ... - + # reverse proxy /api/new/ to http://localhost:3100/api/ handle_path /api/new/* { rewrite * /api{path} @@ -95,7 +95,8 @@ example.com { caddy run --config ./Caddyfile ``` -Note: `run` runs in the foreground, `start` starts a service (daemon) in the background. +Note: `run` runs in the foreground, `start` starts a service (daemon) in the +background. ### How to start Caddy as a Linux service diff --git a/powershell/README.md b/powershell/README.md index efb35e5..407e389 100644 --- a/powershell/README.md +++ b/powershell/README.md @@ -9,8 +9,8 @@ tagline: | > debug Windows scripts without having to boot up Windows. For example, if you want to create a `curl.exe -A "windows" | powershell` script -for Windows (as we do), it's helpful to be able to do some level of debugging -on other platforms. +for Windows (as we do), it's helpful to be able to do some level of debugging on +other platforms.