fop-cli 3.9.6 → 3.9.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 -1
- package/install.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -99,6 +99,9 @@ fop -n ~/easylist ~/easyprivacy ~/fanboy-addon
|
|
|
99
99
|
| `--just-sort` | Alias for `--no-commit` |
|
|
100
100
|
| `--no-ubo-convert` | Skip uBO to ABP option conversion (keep `xhr`, `3p`, `1p`, etc.) |
|
|
101
101
|
| `--no-msg-check` | Skip commit message format validation (M:/A:/P:) |
|
|
102
|
+
| `--disable-ignored` | Disable hardcoded ignored files and folders for testing |
|
|
103
|
+
| `--no-sort` | Don't sort rulse, just combine |
|
|
104
|
+
| `--alt-sort` | More correct sorting method |
|
|
102
105
|
| `-h, --help` | Show help message |
|
|
103
106
|
| `-V, --version` | Show version number |
|
|
104
107
|
|
|
@@ -147,4 +150,4 @@ GPL-3.0 (same as original Python FOP)
|
|
|
147
150
|
## Credits
|
|
148
151
|
|
|
149
152
|
- Original Python FOP by Michael (EasyList project)
|
|
150
|
-
- Rust port maintains feature parity with Python version 3.9
|
|
153
|
+
- Rust port maintains feature parity with Python version 3.9
|
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 = '3.9.
|
|
10
|
+
const VERSION = '3.9.7';
|
|
11
11
|
const GITHUB_REPO = 'ryanbr/fop-rs'; // Change to your repo
|
|
12
12
|
const BINARY_NAME = 'fop';
|
|
13
13
|
|