Skip to content

Commit

Permalink
Merge e89a873 into 2eddf46
Browse files Browse the repository at this point in the history
  • Loading branch information
nflaig authored Jun 16, 2023
2 parents 2eddf46 + e89a873 commit 7f56018
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 17 deletions.
10 changes: 5 additions & 5 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Thanks for your interest in contributing to Lodestar. It's people like you that
## Prerequisites

- :gear: [NodeJS](https://nodejs.org/) (LTS)
- :toolbox: [Yarn](https://yarnpkg.com/)/[Lerna](https://lerna.js.org/)
- :toolbox: [Yarn](https://yarnpkg.com/)

## Getting Started

Expand All @@ -18,10 +18,10 @@ Thanks for your interest in contributing to Lodestar. It's people like you that

To run tests:

- :test_tube: Run `lerna run test:unit` for unit tests.
- :test_tube: Run `lerna run test:e2e` for end-to-end tests.
- :test_tube: Run `lerna run test:spec` for spec tests.
- :test_tube: Run `lerna run test` to run all tests.
- :test_tube: Run `yarn test:unit` for unit tests.
- :test_tube: Run `yarn test:e2e` for end-to-end tests.
- :test_tube: Run `yarn test:spec` for spec tests.
- :test_tube: Run `yarn test` to run all tests.
- :test_tube: Run `yarn check-types` to check TypeScript types.
- :test_tube: Run `yarn lint` to run the linter (ESLint).

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@
## Prerequisites

- :gear: [NodeJS](https://nodejs.org/) (LTS)
- :toolbox: [Yarn](https://yarnpkg.com/)/[Lerna](https://lerna.js.org/)
- :toolbox: [Yarn](https://yarnpkg.com/)

###### Developer Quickstart:

```bash
lerna bootstrap
yarn install
yarn build
./lodestar --help
```
Expand Down
6 changes: 0 additions & 6 deletions docs/install/source.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,6 @@ Build across all packages.
yarn run build
```

Or if you are using [Lerna](https://lerna.js.org/):

```bash
lerna bootstrap
```

## Lodestar CLI

Lodestar should now be ready for use.
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
"check-build": "lerna run check-build",
"check-types": "lerna run check-types --no-bail",
"coverage": "lerna run coverage --no-bail",
"test": "lerna run test --no-bail --concurrency 1",
"test:unit": "lerna run test:unit --no-bail --concurrency 1",
"test:browsers": "lerna run test:browsers",
"test:e2e": "lerna run test:e2e --no-bail --concurrency 1",
Expand Down
2 changes: 1 addition & 1 deletion packages/api/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ api.beacon

## Prerequisites

- [Lerna](https://github.com/lerna/lerna)
- [NodeJS](https://nodejs.org/) (LTS)
- [Yarn](https://yarnpkg.com/)

## What you need
Expand Down
2 changes: 1 addition & 1 deletion packages/light-client/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
## Prerequisites

- [Lerna](https://github.com/lerna/lerna)
- [NodeJS](https://nodejs.org/) (LTS)
- [Yarn](https://yarnpkg.com/)

## What you need
Expand Down
2 changes: 1 addition & 1 deletion packages/prover/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ lodestar-prover start \

## Prerequisites

- [Lerna](https://github.com/lerna/lerna)
- [NodeJS](https://nodejs.org/) (LTS)
- [Yarn](https://yarnpkg.com/)

## What you need
Expand Down
2 changes: 1 addition & 1 deletion packages/reqresp/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ async function getReqResp(libp2p: Libp2p, logger: Logger): Promise<void> {

## Prerequisites

- [Lerna](https://github.com/lerna/lerna)
- [NodeJS](https://nodejs.org/) (LTS)
- [Yarn](https://yarnpkg.com/)

## What you need
Expand Down

0 comments on commit 7f56018

Please sign in to comment.