fop-cli 5.0.0 → 5.0.2
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 -4
- package/install.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -85,6 +85,9 @@ fop -n ~/easylist ~/easyprivacy ~/fanboy-addon
|
|
|
85
85
|
| `--no-sort` | Don't sort rules, just combine |
|
|
86
86
|
| `--alt-sort` | More correct sorting method |
|
|
87
87
|
| `--localhost` | Sort hosts file entries (0.0.0.0/127.0.0.1 domain) |
|
|
88
|
+
| `--localhost-files=` | Specific files to sort as localhost format (comma-separated) |
|
|
89
|
+
| `--parse-adguard` | Globally Parse AdGuard extended CSS (#$?#, #@$?#, $$, $@$) |
|
|
90
|
+
| `--parse-adguard=FILE` | Files to parse as AdGuard extended CSS (comma-separated) |
|
|
88
91
|
| `--no-color` | Disable colored output |
|
|
89
92
|
| `--no-large-warning` | Disable large change warning prompt |
|
|
90
93
|
| `--backup` | Create .backup files before modifying |
|
|
@@ -95,7 +98,6 @@ fop -n ~/easylist ~/easyprivacy ~/fanboy-addon
|
|
|
95
98
|
| `--ignore-all-but=` | Only process these files, ignore all others (comma-separated) |
|
|
96
99
|
| `--file-extensions=` | File extensions to process (default: .txt) |
|
|
97
100
|
| `--comments=` | Comment line prefixes (default: !) |
|
|
98
|
-
| `--disable-domain-limit=` | Files to skip short domain check (comma-separated) |
|
|
99
101
|
| `--warning-output=` | Output warnings to file instead of stderr |
|
|
100
102
|
| `--git-message=` | Git commit message (skip interactive prompt) |
|
|
101
103
|
| `--history=` | Predefined commit messages for arrow key selection (comma-separated) |
|
|
@@ -115,6 +117,10 @@ fop -n ~/easylist ~/easyprivacy ~/fanboy-addon
|
|
|
115
117
|
| `--check-file=FILE` | Process a single file |
|
|
116
118
|
| `--output-diff=FILE` | Output changes as diff (no files modified) |
|
|
117
119
|
| `--quiet` | Limit console output, less verbose |
|
|
120
|
+
| `--limited-quiet` | Suppress directory listing only |
|
|
121
|
+
| `--add-timestamp=FILES` | Update timestamp for specific files only (comma-separated) |
|
|
122
|
+
| `--validate-checksum=FILES` | Validate checksum for specific files (exit 1 on failure) |
|
|
123
|
+
| `--validate-checksum-and-fix=FILES` | Validate and fix invalid checksums |
|
|
118
124
|
| `--add-checksum=FILES` | Add/update checksum for specific files (comma-separated) |
|
|
119
125
|
| `--add-timestamp` | Update timestamp in file header (Last Modified/Last Updated) |
|
|
120
126
|
| `--config-file=` | Custom config file path |
|
|
@@ -164,9 +170,6 @@ ignore-dot-domains = false
|
|
|
164
170
|
# Comment line prefixes
|
|
165
171
|
comments = !
|
|
166
172
|
|
|
167
|
-
# Files to skip short domain check
|
|
168
|
-
disable-domain-limit =
|
|
169
|
-
|
|
170
173
|
# Output warnings to file
|
|
171
174
|
warning-output =
|
|
172
175
|
|
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 = '5.0.
|
|
10
|
+
const VERSION = '5.0.2';
|
|
11
11
|
const GITHUB_REPO = 'ryanbr/fop-rs'; // Change to your repo
|
|
12
12
|
const BINARY_NAME = 'fop';
|
|
13
13
|
|