@tanagram/lore 0.1.216 → 0.1.218
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 +9 -0
- package/dist/index.js +240 -240
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -14,6 +14,15 @@ npm install -g @loredotlink/cli
|
|
|
14
14
|
lore
|
|
15
15
|
```
|
|
16
16
|
|
|
17
|
+
On npm 11.16 or newer, npm may ask you to approve global install scripts
|
|
18
|
+
before it considers them reviewed. If you see an `allow-scripts` warning, run
|
|
19
|
+
the install with npm's global allowlist flag so the Lore postinstall migration
|
|
20
|
+
and background-binary refresh are explicitly approved:
|
|
21
|
+
|
|
22
|
+
```sh
|
|
23
|
+
npm install -g --allow-scripts=@loredotlink/cli @loredotlink/cli
|
|
24
|
+
```
|
|
25
|
+
|
|
17
26
|
`lore` opens a dashboard in your terminal. Sign in there once and, on
|
|
18
27
|
macOS, background uploads start immediately. On Linux, run `lore configure`
|
|
19
28
|
to pick which directories upload.
|