fop-cli 5.2.0 → 5.3.0
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 +2 -0
- package/install.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -126,6 +126,8 @@ fop -n ~/easylist ~/easyprivacy ~/fanboy-addon
|
|
|
126
126
|
| `--config-file=` | Custom config file path |
|
|
127
127
|
| `--show-config` | Show applied configuration and exit |
|
|
128
128
|
| `--git-binary=<path>` | Path to git binary (default: git in PATH) |
|
|
129
|
+
| `--benchmark` | Benchmark sorting performance (3 iterations, dry-run) |
|
|
130
|
+
| `--abp-convert` | Convert ABP extended selectors to uBO format |
|
|
129
131
|
| `-h, --help` | Show help message |
|
|
130
132
|
| `-V, --version` | Show version number |
|
|
131
133
|
|
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.
|
|
10
|
+
const VERSION = '5.3.0';
|
|
11
11
|
const GITHUB_REPO = 'ryanbr/fop-rs'; // Change to your repo
|
|
12
12
|
const BINARY_NAME = 'fop';
|
|
13
13
|
|