@nikeproduct/pull-pal-win32-x64 0.1.0 → 0.1.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 +25 -0
- package/package.json +3 -2
package/README.md
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# @nikeproduct/pull-pal-win32-x64
|
|
2
|
+
|
|
3
|
+
Precompiled Windows x64 binary for [pull-pal](https://www.npmjs.com/package/pull-pal).
|
|
4
|
+
|
|
5
|
+
This package is an **optional dependency** of `pull-pal` and is installed automatically by npm when you run:
|
|
6
|
+
|
|
7
|
+
```sh
|
|
8
|
+
npm install -g pull-pal
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
You do not need to install this package directly.
|
|
12
|
+
|
|
13
|
+
---
|
|
14
|
+
|
|
15
|
+
## What is pull-pal?
|
|
16
|
+
|
|
17
|
+
`pull-pal` is a `git push` wrapper that automatically fetches the remote, rebases against the default branch if you're behind, runs your test suite, and blocks the push if tests fail. Works with Node, Python, Go, Rust, Java, Ruby, and more.
|
|
18
|
+
|
|
19
|
+
See the [main package](https://www.npmjs.com/package/pull-pal) for full documentation.
|
|
20
|
+
|
|
21
|
+
---
|
|
22
|
+
|
|
23
|
+
## License
|
|
24
|
+
|
|
25
|
+
MIT — [github.com/nikeproduct/pull-pal](https://github.com/nikeproduct/pull-pal)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nikeproduct/pull-pal-win32-x64",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "pull-pal Windows x64 binary",
|
|
5
5
|
"os": ["win32"],
|
|
6
6
|
"cpu": ["x64"],
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
"url": "git+https://github.com/nikeproduct/pull-pal.git"
|
|
12
12
|
},
|
|
13
13
|
"files": [
|
|
14
|
-
"pull-pal.exe"
|
|
14
|
+
"pull-pal.exe",
|
|
15
|
+
"README.md"
|
|
15
16
|
]
|
|
16
17
|
}
|