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-4
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.
Copy file name to clipboardExpand all lines: packages/vuepress/README.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -32,7 +32,7 @@ The docs are available at <https://vuepress.vuejs.org>
32
32
Want to contribute? Check our [issues for beginners](https://github.com/vuejs/vuepress/issues?q=is%3Aopen+is%3Aissue+label%3A%22good+first+issue%22)!
33
33
34
34
```bash
35
-
yarn bootstrap # Install and link dependencies for this lerna repo
35
+
yarn # Install and link dependencies for this monorepo
36
36
yarn dev # serves VuePress' own docs with itself
37
37
yarn test# make sure your code change pass the test
0 commit comments