Remove $ from bash markdown blocks

This commit is contained in:
Christopher Schleiden
2023-01-25 09:12:44 -08:00
parent ef6cfdcd1e
commit 5984871a7c
4 changed files with 20 additions and 20 deletions
+6 -6
View File
@@ -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
+6 -6
View File
@@ -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
+6 -6
View File
@@ -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
+2 -2
View File
@@ -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`.