Skip to content

Commit

Permalink
Update README for turborepo (#1077)
Browse files Browse the repository at this point in the history
Now that we use turborepo for running monorepo tasks, update the README
to indicate that you should use the new turborepo powered run scripts.
  • Loading branch information
scotttrinh authored Aug 2, 2024
1 parent a1b08c4 commit 94826ab
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -226,9 +226,9 @@ EdgeDB from [here](https://www.edgedb.com/download) or
```bash
$ git clone git@github.com:edgedb/edgedb-js.git
$ cd edgedb-js
$ yarn # install dependencies
$ yarn workspaces run build # build all packages
$ yarn workspaces run test # run tests for all packages
$ yarn # install dependencies
$ yarn run build # build all packages
$ yarn run test # run tests for all packages
```

> In order to be able to run all tests you need to have `edgedb-server` in your
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"scripts": {
"typecheck": "turbo run typecheck",
"build": "turbo run build",
"text": "turbo run test",
"test": "turbo run test",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"format": "prettier --check 'packages/*/(src|test)/**/*.(mts|ts)' 'integration-tests/*/*.(mts|ts)'",
Expand Down

0 comments on commit 94826ab

Please sign in to comment.