@offckb/cli 0.2.0-canary-5a5a58d.0 → 0.2.0-canary-b94f482.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -77,6 +77,13 @@ Commands:
|
|
|
77
77
|
|
|
78
78
|
*Use `offckb [command] -h` to learn more about a specific command.*
|
|
79
79
|
|
|
80
|
+
Sometimes you might encounter sudo permission problems. Granting the current user write access to the node_modules directory can resolve the problem.
|
|
81
|
+
|
|
82
|
+
```sh
|
|
83
|
+
sudo chown -R $(whoami) /usr/local/lib/node_modules
|
|
84
|
+
npm install -g @offckb/cli
|
|
85
|
+
```
|
|
86
|
+
|
|
80
87
|
## Get started
|
|
81
88
|
|
|
82
89
|
### Create a full-stack Project
|