You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: boilerplates/lerna-module/README.md
+10-1Lines changed: 10 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,11 +22,20 @@ npm install __MODULENAME__
22
22
23
23
When first cloning the repo:
24
24
25
-
```
25
+
```sh
26
26
yarn
27
+
# 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.
27
28
yarn build
28
29
```
29
30
31
+
Or if you want to make your dev process smoother, you can run:
32
+
33
+
```sh
34
+
yarn
35
+
# build the dev packages with .map files, this enables navigation from references to their source code between packages.
Copy file name to clipboardExpand all lines: boilerplates/lerna-workspace/README.md
+11-2Lines changed: 11 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,13 +20,22 @@ npm install __MODULENAME__
20
20
21
21
## Developing
22
22
23
-
24
23
When first cloning the repo:
25
-
```
24
+
25
+
```sh
26
26
yarn
27
+
# 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.
27
28
yarn build
28
29
```
29
30
31
+
Or if you want to make your dev process smoother, you can run:
32
+
33
+
```sh
34
+
yarn
35
+
# build the dev packages with .map files, this enables navigation from references to their source code between packages.
0 commit comments