Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixes contributing setup section : yarn must be present to run 'lerna bootstrap' #86

Merged
merged 1 commit into from
Apr 29, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ The following is a set of guidelines for contributing to DBML and its packages,

### Setup

DBML is structured as monorepo project. We uses [Lerna](https://github.com/lerna/lerna) to organize and manage multiple packages.
DBML is structured as monorepo project. We uses [yarn](https://yarnpkg.com/) and [Lerna](https://github.com/lerna/lerna) to organize and manage multiple packages.

**Install Lerna first:**
**Install Yarn then Lerna first:**

$ npm install -g lerna
# or if you're using yarn
$ npm install -g yarn lerna

# or if you're already using yarn
$ yarn global add lerna

**Clone and build DBML**:
Expand All @@ -44,7 +44,7 @@ DBML is structured as monorepo project. We uses [Lerna](https://github.com/lerna
Example of running test for @dbml/cli:

$ lerna run test --scope @dbml/cli

info cli using local version of lerna
lerna notice cli v3.16.4
lerna info filter [ '@dbml/cli' ]
Expand Down