fop-cli 4.1.1 → 4.2.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 +7 -0
- package/install.js +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -102,6 +102,7 @@ fop -n ~/easylist ~/easyprivacy ~/fanboy-addon
|
|
|
102
102
|
| `--fix-typos` | Fix cosmetic rule typos in all files during sort |
|
|
103
103
|
| `--fix-typos-on-add` | Check cosmetic rule typos in git additions before commit |
|
|
104
104
|
| `--auto-fix` | Auto-fix typos without prompting (use with --fix-typos-on-add) |
|
|
105
|
+
| `--ignore-config` | Ignore .fopconfig file, use only CLI args |
|
|
105
106
|
| `--check-file=FILE` | Process a single file |
|
|
106
107
|
| `--output-diff=FILE` | Output changes as diff (no files modified) |
|
|
107
108
|
| `--quiet` | Limit console output, less verbose |
|
|
@@ -180,6 +181,12 @@ fix-typos-on-add = false
|
|
|
180
181
|
|
|
181
182
|
# Auto-fix without prompting
|
|
182
183
|
auto-fix = false
|
|
184
|
+
|
|
185
|
+
# Suppress most output (for CI)
|
|
186
|
+
quiet = false
|
|
187
|
+
|
|
188
|
+
# Users allowed to push directly when create-pr is enabled (comma-separated, case-insensitive)
|
|
189
|
+
direct-push-users =
|
|
183
190
|
```
|
|
184
191
|
|
|
185
192
|
Command line arguments override config file settings.
|
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 = '4.
|
|
10
|
+
const VERSION = '4.2.0';
|
|
11
11
|
const GITHUB_REPO = 'ryanbr/fop-rs'; // Change to your repo
|
|
12
12
|
const BINARY_NAME = 'fop';
|
|
13
13
|
|
|
@@ -16,9 +16,9 @@ const PLATFORMS = {
|
|
|
16
16
|
'darwin-x64': `-macos-x86_64`,
|
|
17
17
|
'darwin-arm64': `-macos-arm64`,
|
|
18
18
|
'linux-x64': `-linux-x86_64`,
|
|
19
|
-
'linux-arm64': `-linux-arm64`,
|
|
19
|
+
'linux-arm64': `-linux-arm64-n1`,
|
|
20
20
|
'win32-x64': `-windows-x86_64.exe`,
|
|
21
|
-
'win32-arm64': `-windows-arm64.exe`,
|
|
21
|
+
'win32-arm64': `-windows-arm64-v2.exe`,
|
|
22
22
|
};
|
|
23
23
|
|
|
24
24
|
function getDownloadUrl(binaryName) {
|