fop-cli 4.2.6 → 4.2.7
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 +4 -0
- package/install.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -100,6 +100,7 @@ fop -n ~/easylist ~/easyprivacy ~/fanboy-addon
|
|
|
100
100
|
| `--git-message=` | Git commit message (skip interactive prompt) |
|
|
101
101
|
| `--create-pr[=TITLE]` | Create PR branch instead of committing to current branch |
|
|
102
102
|
| `--git-pr-branch=NAME` | Base branch for PR (default: auto-detect main/master) |
|
|
103
|
+
| `--pr-show-changes` | Include rule changes (combines, merges, typos) in PR body |
|
|
103
104
|
| `--fix-typos` | Fix cosmetic rule typos in all files during sort |
|
|
104
105
|
| `--fix-typos-on-add` | Check cosmetic rule typos in git additions before commit |
|
|
105
106
|
| `--auto-fix` | Auto-fix typos without prompting (use with --fix-typos-on-add) |
|
|
@@ -174,6 +175,9 @@ file-extensions = txt
|
|
|
174
175
|
# Create PR branch instead of committing
|
|
175
176
|
create-pr =
|
|
176
177
|
|
|
178
|
+
# Include rule changes in PR body
|
|
179
|
+
pr-show-changes = false
|
|
180
|
+
|
|
177
181
|
# Base branch for PR (default: auto-detect)
|
|
178
182
|
git-pr-branch =
|
|
179
183
|
|
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.2.
|
|
10
|
+
const VERSION = '4.2.7';
|
|
11
11
|
const GITHUB_REPO = 'ryanbr/fop-rs'; // Change to your repo
|
|
12
12
|
const BINARY_NAME = 'fop';
|
|
13
13
|
|