fop-cli 5.0.1 → 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 +3 -3
- 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 |
|
|
@@ -167,9 +170,6 @@ ignore-dot-domains = false
|
|
|
167
170
|
# Comment line prefixes
|
|
168
171
|
comments = !
|
|
169
172
|
|
|
170
|
-
# Files to skip short domain check
|
|
171
|
-
disable-domain-limit =
|
|
172
|
-
|
|
173
173
|
# Output warnings to file
|
|
174
174
|
warning-output =
|
|
175
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
|
|