From 5984871a7cae374f718753fde1371c641c563db4 Mon Sep 17 00:00:00 2001 From: Christopher Schleiden Date: Wed, 25 Jan 2023 09:12:44 -0800 Subject: [PATCH] Remove `$` from `bash` markdown blocks --- actions-expressions/README.md | 12 ++++++------ actions-languageserver/README.md | 12 ++++++------ actions-languageservice/README.md | 12 ++++++------ browser-playground/README.md | 4 ++-- 4 files changed, 20 insertions(+), 20 deletions(-) diff --git a/actions-expressions/README.md b/actions-expressions/README.md index 5a31293..b2a15ad 100644 --- a/actions-expressions/README.md +++ b/actions-expressions/README.md @@ -7,7 +7,7 @@ The [package](https://www.npmjs.com/package/@actions/expressions) contains TypeScript types and compiled ECMAScript modules. ```bash -$ npm install @actions/expressions +npm install @actions/expressions ``` ## Usage @@ -63,31 +63,31 @@ If you do want to contribute, please run [prettier](https://prettier.io/) to for ### Build ```bash -$ npm run build +npm run build ``` or to watch for changes ```bash -$ npm run watch +npm run watch ``` ### Test ```bash -$ npm test +npm test ``` or to watch for changes and run tests: ```bash -$ npm run test-watch +npm run test-watch ``` ### Lint ```bash -$ npm run format-check +npm run format-check ``` ## License diff --git a/actions-languageserver/README.md b/actions-languageserver/README.md index 3217424..f365b64 100644 --- a/actions-languageserver/README.md +++ b/actions-languageserver/README.md @@ -7,7 +7,7 @@ The [package](https://www.npmjs.com/package/@actions/languageserver) contains TypeScript types and compiled ECMAScript modules. ```bash -$ npm install @actions/languageserver +npm install @actions/languageserver ``` ## Usage @@ -103,31 +103,31 @@ If you do want to contribute, please run [prettier](https://prettier.io/) to for ### Build ```bash -$ npm run build +npm run build ``` or to watch for changes ```bash -$ npm run watch +npm run watch ``` ### Test ```bash -$ npm test +npm test ``` or to watch for changes and run tests: ```bash -$ npm run test-watch +npm run test-watch ``` ### Lint ```bash -$ npm run format-check +npm run format-check ``` ## License diff --git a/actions-languageservice/README.md b/actions-languageservice/README.md index b495c94..c51bfbe 100644 --- a/actions-languageservice/README.md +++ b/actions-languageservice/README.md @@ -7,7 +7,7 @@ This package contains the logic for the GitHub Actions workflows language server The [package](https://www.npmjs.com/package/@actions/languageservice) contains TypeScript types and compiled ECMAScript modules. ```bash -$ npm install @actions/languageservice +npm install @actions/languageservice ``` ## Usage @@ -71,31 +71,31 @@ If you do want to contribute, please run [prettier](https://prettier.io/) to for ### Build ```bash -$ npm run build +npm run build ``` or to watch for changes ```bash -$ npm run watch +npm run watch ``` ### Test ```bash -$ npm test +npm test ``` or to watch for changes and run tests: ```bash -$ npm run test-watch +npm run test-watch ``` ### Lint ```bash -$ npm run format-check +npm run format-check ``` ## License diff --git a/browser-playground/README.md b/browser-playground/README.md index 60ba79c..4c88ff2 100644 --- a/browser-playground/README.md +++ b/browser-playground/README.md @@ -9,13 +9,13 @@ This is a web-based playground hosting the [language server](../actions-language Even though the package is part of the `npm` workspace, it needs its dependencies to be installed locally in order to run `webpack-dev-server`. To do so, run: ```bash -$ npm i --workspaces=no +npm i --workspaces=no ``` then ```bash -$ npm start +npm start ``` to build and serve the app at `localhost:8080`.