@gkiely/safe-install 0.1.11 → 0.1.12
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 -2
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -23,8 +23,13 @@ behind a reviewed allowlist in `package.json`.
|
|
|
23
23
|
|
|
24
24
|
```txt
|
|
25
25
|
ignore-scripts=true
|
|
26
|
-
|
|
27
|
-
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
Optionally enable:
|
|
29
|
+
|
|
30
|
+
```txt
|
|
31
|
+
allow-git=root # npm 11.10.0+
|
|
32
|
+
allow-remote=root # npm 11.14.0+
|
|
28
33
|
```
|
|
29
34
|
|
|
30
35
|
`allow-git=root` and `allow-remote=root` let your project use direct Git or
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gkiely/safe-install",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.12",
|
|
4
4
|
"description": "Run npm installs with lifecycle scripts disabled, then rebuild explicitly trusted dependencies.",
|
|
5
5
|
"author": "Grant Kiely <grant@youneedawiki.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -55,6 +55,7 @@
|
|
|
55
55
|
"typescript": "latest"
|
|
56
56
|
},
|
|
57
57
|
"volta": {
|
|
58
|
-
"node": "24.14.
|
|
58
|
+
"node": "24.14.1",
|
|
59
|
+
"npm": "11.14.1"
|
|
59
60
|
}
|
|
60
61
|
}
|