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: packages/docs/docs/miscellaneous/local-development.md
+2-4Lines changed: 2 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -13,10 +13,10 @@ VuePress is using a combo with [Yarn workspaces](https://yarnpkg.com/lang/en/doc
13
13
## Init packages
14
14
15
15
```bash
16
-
yarn bootstrap // it will run and install into the root all packages subfolders
16
+
yarn // it will install dependencies of all packages
17
17
```
18
18
19
-
`yarn bootstrap` will use hoisting. What does it mean for you ?
19
+
`yarn` will use hoisting. What does it mean for you ?
20
20
21
21
It will regroup all dependencies in the workspace root and link all packages.
22
22
@@ -26,8 +26,6 @@ Check the link by running the following command:
26
26
ls -la node_modules/@vuepress
27
27
```
28
28
29
-
You will all symlinks
30
-
31
29
:::warning
32
30
You have to take care to declare all dependencies inside subFolders package.json. When publish the lib if dependencies from a package is not declare it will just not work.
0 commit comments