fop-cli 3.9.7 → 3.9.8
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 -0
- package/install.js +3 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -102,6 +102,10 @@ fop -n ~/easylist ~/easyprivacy ~/fanboy-addon
|
|
|
102
102
|
| `--disable-ignored` | Disable hardcoded ignored files and folders for testing |
|
|
103
103
|
| `--no-sort` | Don't sort rulse, just combine |
|
|
104
104
|
| `--alt-sort` | More correct sorting method |
|
|
105
|
+
| `--localhost` | Sort hosts file entries (0.0.0.0/127.0.0.1 domain) |
|
|
106
|
+
| `--ignorefiles=` | Additional files to ignore (comma-separated, partial names) |
|
|
107
|
+
| `--config-file=` | Custom config file path |
|
|
108
|
+
| `--no-color` | Disable colored output |
|
|
105
109
|
| `-h, --help` | Show help message |
|
|
106
110
|
| `-V, --version` | Show version number |
|
|
107
111
|
|
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.8';
|
|
11
11
|
const GITHUB_REPO = 'ryanbr/fop-rs'; // Change to your repo
|
|
12
12
|
const BINARY_NAME = 'fop';
|
|
13
13
|
|
|
@@ -17,6 +17,8 @@ const PLATFORMS = {
|
|
|
17
17
|
'darwin-arm64': `-macos-arm64`,
|
|
18
18
|
'linux-x64': `-linux-x86_64`,
|
|
19
19
|
'linux-arm64': `-linux-arm64`,
|
|
20
|
+
'win32-x64': `-windows-x86_64.exe`,
|
|
21
|
+
'win32-arm64': `-windows-arm64.exe`,
|
|
20
22
|
};
|
|
21
23
|
|
|
22
24
|
function getPlatformBinary() {
|