Skip to content

Commit

Permalink
change the comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Zetazzz committed Jun 12, 2024
1 parent 1ec341b commit fb66988
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions boilerplates/lerna-module/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@ When first cloning the repo:

```sh
yarn
# build the prod packages, this will navigate from references to their definitions (.d.ts files) between packages.
# build the prod packages. When devs would like to navigate to the source code, this will only navigate from references to their definitions (.d.ts files) between packages.
yarn build
```

Or if you want to make your dev process smoother, you can run:

```sh
yarn
# build the dev packages, this enables navigation from references to their source code between packages.
# build the dev packages with .map files, this enables navigation from references to their source code between packages.
yarn build:dev
```

Expand Down
4 changes: 2 additions & 2 deletions boilerplates/lerna-workspace/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@ When first cloning the repo:

```sh
yarn
# build the prod packages, this will navigate from references to their definitions (.d.ts files) between packages.
# build the prod packages. When devs would like to navigate to the source code, this will only navigate from references to their definitions (.d.ts files) between packages.
yarn build
```

Or if you want to make your dev process smoother, you can run:

```sh
yarn
# build the dev packages, this enables navigation from references to their source code between packages.
# build the dev packages with .map files, this enables navigation from references to their source code between packages.
yarn build:dev
```

Expand Down

0 comments on commit fb66988

Please sign in to comment.