fop-cli 4.3.0 → 4.3.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 +5 -0
- package/install.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -98,6 +98,7 @@ fop -n ~/easylist ~/easyprivacy ~/fanboy-addon
|
|
|
98
98
|
| `--disable-domain-limit=` | Files to skip short domain check (comma-separated) |
|
|
99
99
|
| `--warning-output=` | Output warnings to file instead of stderr |
|
|
100
100
|
| `--git-message=` | Git commit message (skip interactive prompt) |
|
|
101
|
+
| `--history=` | Predefined commit messages for arrow key selection (comma-separated) |
|
|
101
102
|
| `--create-pr[=TITLE]` | Create PR branch instead of committing to current branch |
|
|
102
103
|
| `--git-pr-branch=NAME` | Base branch for PR (default: auto-detect main/master) |
|
|
103
104
|
| `--pr-show-changes` | Include rule changes (combines, merges, typos) in PR body |
|
|
@@ -213,6 +214,10 @@ quiet = false
|
|
|
213
214
|
|
|
214
215
|
# Users allowed to push directly when create-pr is enabled (comma-separated, case-insensitive)
|
|
215
216
|
direct-push-users =
|
|
217
|
+
|
|
218
|
+
# Predefined commit messages for arrow key selection (comma-separated)
|
|
219
|
+
# Use up/down arrows at commit prompt to cycle through these
|
|
220
|
+
history = A: ,P: ,M: Update,M: Cleanup,M: Sort,M: Adjust
|
|
216
221
|
```
|
|
217
222
|
|
|
218
223
|
Command line arguments override config file settings.
|
package/install.js
CHANGED
|
@@ -7,7 +7,7 @@ const path = require('path');
|
|
|
7
7
|
const { execSync } = require('child_process');
|
|
8
8
|
|
|
9
9
|
// Configuration - UPDATE THESE FOR YOUR RELEASE
|
|
10
|
-
const VERSION = '4.3.
|
|
10
|
+
const VERSION = '4.3.1';
|
|
11
11
|
const GITHUB_REPO = 'ryanbr/fop-rs'; // Change to your repo
|
|
12
12
|
const BINARY_NAME = 'fop';
|
|
13
13
|
|