fop-cli 4.1.0 → 4.1.1
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 -0
- package/install.js +3 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -102,6 +102,9 @@ 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
|
+
| `--check-file=FILE` | Process a single file |
|
|
106
|
+
| `--output-diff=FILE` | Output changes as diff (no files modified) |
|
|
107
|
+
| `--quiet` | Limit console output, less verbose |
|
|
105
108
|
| `--config-file=` | Custom config file path |
|
|
106
109
|
| `--show-config` | Show applied configuration and exit |
|
|
107
110
|
| `-h, --help` | Show help message |
|
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.1.
|
|
10
|
+
const VERSION = '4.1.1';
|
|
11
11
|
const GITHUB_REPO = 'ryanbr/fop-rs'; // Change to your repo
|
|
12
12
|
const BINARY_NAME = 'fop';
|
|
13
13
|
|
|
@@ -16,7 +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
20
|
'win32-x64': `-windows-x86_64.exe`,
|
|
21
|
+
'win32-arm64': `-windows-arm64.exe`,
|
|
20
22
|
};
|
|
21
23
|
|
|
22
24
|
function getDownloadUrl(binaryName) {
|