fop-cli 4.3.2 → 5.0.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 +7 -1
- package/install.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -95,7 +95,6 @@ fop -n ~/easylist ~/easyprivacy ~/fanboy-addon
|
|
|
95
95
|
| `--ignore-all-but=` | Only process these files, ignore all others (comma-separated) |
|
|
96
96
|
| `--file-extensions=` | File extensions to process (default: .txt) |
|
|
97
97
|
| `--comments=` | Comment line prefixes (default: !) |
|
|
98
|
-
| `--disable-domain-limit=` | Files to skip short domain check (comma-separated) |
|
|
99
98
|
| `--warning-output=` | Output warnings to file instead of stderr |
|
|
100
99
|
| `--git-message=` | Git commit message (skip interactive prompt) |
|
|
101
100
|
| `--history=` | Predefined commit messages for arrow key selection (comma-separated) |
|
|
@@ -115,8 +114,15 @@ fop -n ~/easylist ~/easyprivacy ~/fanboy-addon
|
|
|
115
114
|
| `--check-file=FILE` | Process a single file |
|
|
116
115
|
| `--output-diff=FILE` | Output changes as diff (no files modified) |
|
|
117
116
|
| `--quiet` | Limit console output, less verbose |
|
|
117
|
+
| `--limited-quiet` | Suppress directory listing only |
|
|
118
|
+
| `--add-timestamp=FILES` | Update timestamp for specific files only (comma-separated) |
|
|
119
|
+
| `--validate-checksum=FILES` | Validate checksum for specific files (exit 1 on failure) |
|
|
120
|
+
| `--validate-checksum-and-fix=FILES` | Validate and fix invalid checksums |
|
|
121
|
+
| `--add-checksum=FILES` | Add/update checksum for specific files (comma-separated) |
|
|
122
|
+
| `--add-timestamp` | Update timestamp in file header (Last Modified/Last Updated) |
|
|
118
123
|
| `--config-file=` | Custom config file path |
|
|
119
124
|
| `--show-config` | Show applied configuration and exit |
|
|
125
|
+
| `--git-binary=<path>` | Path to git binary (default: git in PATH) |
|
|
120
126
|
| `-h, --help` | Show help message |
|
|
121
127
|
| `-V, --version` | Show version number |
|
|
122
128
|
|
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 = '
|
|
10
|
+
const VERSION = '5.0.1';
|
|
11
11
|
const GITHUB_REPO = 'ryanbr/fop-rs'; // Change to your repo
|
|
12
12
|
const BINARY_NAME = 'fop';
|
|
13
13
|
|