@djibrilm/lazy-review 0.0.4 → 0.0.5
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/dist/client/assets/{index-CJtKCyBg.js → index-DaPfCkZ0.js} +46 -46
- package/dist/client/index.html +1 -1
- package/dist/modules/github/github.module.d.ts +1 -0
- package/dist/modules/github/github.module.d.ts.map +1 -1
- package/dist/modules/github/github.module.js +77 -0
- package/dist/modules/github/github.module.js.map +1 -1
- package/dist/modules/main.module.d.ts.map +1 -1
- package/dist/modules/main.module.js +0 -1
- package/dist/modules/main.module.js.map +1 -1
- package/dist/modules/server/entities/settings.entity.d.ts +2 -0
- package/dist/modules/server/entities/settings.entity.d.ts.map +1 -1
- package/dist/modules/server/entities/settings.entity.js +10 -0
- package/dist/modules/server/entities/settings.entity.js.map +1 -1
- package/dist/modules/server/server.module.d.ts.map +1 -1
- package/dist/modules/server/server.module.js +16 -3
- package/dist/modules/server/server.module.js.map +1 -1
- package/dist/modules/server/services/auth.services.d.ts.map +1 -1
- package/dist/modules/server/services/auth.services.js +6 -2
- package/dist/modules/server/services/auth.services.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -35,6 +35,13 @@ If you are on a very new or uncommon version of Node.js (e.g. Node 26), prebuilt
|
|
|
35
35
|
- **Linux:** Run `sudo apt-get install build-essential python3`
|
|
36
36
|
- **Windows:** Run `npm install --global windows-build-tools`
|
|
37
37
|
|
|
38
|
+
**3. EPERM: operation not permitted (macOS/Linux)**
|
|
39
|
+
If you are installing globally using `sudo npm install -g @djibrilm/lazy-review` and see a `Download failed: EPERM` error, `npm` has downgraded permissions during the post-install step. To fix this, tell `npm` to keep root permissions during the installation scripts:
|
|
40
|
+
|
|
41
|
+
```bash
|
|
42
|
+
sudo npm install -g @djibrilm/lazy-review --unsafe-perm
|
|
43
|
+
```
|
|
44
|
+
|
|
38
45
|
### From source
|
|
39
46
|
|
|
40
47
|
Requires Node.js 18+ and pnpm.
|