There was an error while loading. Please reload this page.
1 parent a4d90cc commit 4f3cf87Copy full SHA for 4f3cf87
1 file changed
packages/cmk-frontend-vue/README.md
@@ -52,10 +52,13 @@ If you need to change the dependencies you can do so by running pnpm
52
inside bazel, for example:
53
54
```sh
55
-bazel run -- @pnpm//:pnpm --dir $PWD install vue
+# Install package "foo"
56
+bazel run -- @pnpm//:pnpm --dir $PWD install foo
57
+# Update package "foo"
58
+bazel run -- @pnpm//:pnpm --dir $PWD update foo
59
+# Update lock file if package.json was edited manually
60
bazel run -- @pnpm//:pnpm --dir $PWD install --lockfile-only
61
```
62
-Take care that you might add new dependencies to the SRCS variable in
-`BUILD`.
-
63
+If you add a new package, append a `":node_modules/<new-package>"` item
64
+to the SRCS list in the `BUILD` file.
0 commit comments