gitpreflight 0.1.4 → 0.1.10
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 +19 -0
- package/package.json +7 -2
package/README.md
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# gitpreflight
|
|
2
|
+
|
|
3
|
+
Install the GitPreflight CLI globally:
|
|
4
|
+
|
|
5
|
+
```bash
|
|
6
|
+
npm i -g gitpreflight
|
|
7
|
+
```
|
|
8
|
+
|
|
9
|
+
Then run:
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
gitpreflight --help
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
`gitpreflight` is a lightweight npm wrapper that downloads and runs the official GitPreflight binary for your platform.
|
|
16
|
+
|
|
17
|
+
Docs and source:
|
|
18
|
+
|
|
19
|
+
- https://github.com/un/gitPreflight
|
package/package.json
CHANGED
|
@@ -1,13 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gitpreflight",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.10",
|
|
4
4
|
"description": "GitPreflight CLI installer/wrapper (downloads the platform binary)",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "https://github.com/un/gitPreflight"
|
|
8
|
+
},
|
|
5
9
|
"bin": {
|
|
6
10
|
"gitpreflight": "bin/gitpreflight.js"
|
|
7
11
|
},
|
|
8
12
|
"files": [
|
|
9
13
|
"bin",
|
|
10
|
-
"lib"
|
|
14
|
+
"lib",
|
|
15
|
+
"README.md"
|
|
11
16
|
],
|
|
12
17
|
"scripts": {
|
|
13
18
|
"postinstall": "node bin/postinstall.js"
|