sbman 1.0.0 → 1.0.1
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 +10 -0
- package/config.json +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -11,6 +11,16 @@ set BIKLIMASTER_BIKLI_KEY=your-bikli-key
|
|
|
11
11
|
npm install -g sbman
|
|
12
12
|
```
|
|
13
13
|
|
|
14
|
+
Newer npm versions block package install scripts until they are allowed. If npm prints an
|
|
15
|
+
`allow-scripts` warning and the installer does not run, use one of:
|
|
16
|
+
|
|
17
|
+
```text
|
|
18
|
+
npm install -g --force --allow-scripts=sbman sbman
|
|
19
|
+
npm config set allow-scripts=sbman --location=user
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
or run `biklitool install` from an Administrator terminal afterwards.
|
|
23
|
+
|
|
14
24
|
The npm postinstall hook requests Windows administrator approval once, then:
|
|
15
25
|
|
|
16
26
|
1. silently installs the bundled Bikli CLI 1.1.10;
|
package/config.json
CHANGED