From 865cc82cbca49e080c42d9f1588de55365a75dc8 Mon Sep 17 00:00:00 2001 From: Eric Stout Date: Mon, 23 Aug 2021 14:54:59 -0500 Subject: [PATCH 1/2] feat(console): Update server listening message --- lib/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/index.ts b/lib/src/index.ts index 966bc7e..a16ac1d 100644 --- a/lib/src/index.ts +++ b/lib/src/index.ts @@ -34,5 +34,5 @@ app.use(bodyParser.json()); app.use("/", router); app.listen(PORT, () => - console.log(`Server listening on http://localhost:${PORT}`) + console.log(`⚡ Server listening on http://localhost:${PORT}`) ); From ae7400af4254d926a0142851ba02ee420e78d459 Mon Sep 17 00:00:00 2001 From: Eric Stout Date: Mon, 23 Aug 2021 15:01:15 -0500 Subject: [PATCH 2/2] fix(npx): Add bin path to package.json --- package.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/package.json b/package.json index a80287f..6ee4710 100644 --- a/package.json +++ b/package.json @@ -7,6 +7,9 @@ "author": "Eric Stout ", "license": "MIT", "private": false, + "bin": { + "expugrea": "./bin/cli.js" + }, "scripts": { "format": "prettier \"./bin/**/*\" --write", "test": "yarn test:lint && yarn test:format",