rulesync 3.17.1 → 3.18.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 +26 -4
- package/dist/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -70,16 +70,38 @@ chmod +x rulesync
|
|
|
70
70
|
sudo mv rulesync /usr/local/bin/
|
|
71
71
|
```
|
|
72
72
|
|
|
73
|
+
#### Windows (x64)
|
|
74
|
+
|
|
75
|
+
```powershell
|
|
76
|
+
# PowerShell
|
|
77
|
+
Invoke-WebRequest -Uri "https://github.com/dyoshikawa/rulesync/releases/latest/download/rulesync-windows-x64.exe" -OutFile "rulesync.exe"
|
|
78
|
+
# Add to PATH or place in a directory already in PATH
|
|
79
|
+
Move-Item rulesync.exe C:\Windows\System32\
|
|
80
|
+
```
|
|
81
|
+
|
|
82
|
+
Or using curl (if available):
|
|
83
|
+
|
|
84
|
+
```bash
|
|
85
|
+
curl -L https://github.com/dyoshikawa/rulesync/releases/latest/download/rulesync-windows-x64.exe -o rulesync.exe
|
|
86
|
+
# Place the binary wherever set PATH
|
|
87
|
+
```
|
|
88
|
+
|
|
73
89
|
#### Verify checksums
|
|
74
90
|
|
|
75
91
|
```bash
|
|
76
92
|
curl -L https://github.com/dyoshikawa/rulesync/releases/latest/download/SHA256SUMS -o SHA256SUMS
|
|
77
|
-
sha256sum -c SHA256SUMS
|
|
78
|
-
```
|
|
79
93
|
|
|
80
|
-
|
|
94
|
+
# Linux/macOS
|
|
95
|
+
sha256sum -c SHA256SUMS
|
|
81
96
|
|
|
82
|
-
|
|
97
|
+
# Windows (PowerShell)
|
|
98
|
+
# Download SHA256SUMS file first, then verify:
|
|
99
|
+
Get-FileHash rulesync.exe -Algorithm SHA256 | ForEach-Object {
|
|
100
|
+
$actual = $_.Hash.ToLower()
|
|
101
|
+
$expected = (Get-Content SHA256SUMS | Select-String "rulesync-windows-x64.exe").ToString().Split()[0]
|
|
102
|
+
if ($actual -eq $expected) { "✓ Checksum verified" } else { "✗ Checksum mismatch" }
|
|
103
|
+
}
|
|
104
|
+
```
|
|
83
105
|
</details>
|
|
84
106
|
|
|
85
107
|
## Getting Started
|
package/dist/index.cjs
CHANGED
|
@@ -7707,7 +7707,7 @@ Attention, again, you are just the planner, so though you can read any files and
|
|
|
7707
7707
|
}
|
|
7708
7708
|
|
|
7709
7709
|
// src/cli/index.ts
|
|
7710
|
-
var getVersion = () => "3.
|
|
7710
|
+
var getVersion = () => "3.18.0";
|
|
7711
7711
|
var main = async () => {
|
|
7712
7712
|
const program = new import_commander.Command();
|
|
7713
7713
|
const version = getVersion();
|
package/dist/index.js
CHANGED
|
@@ -7684,7 +7684,7 @@ Attention, again, you are just the planner, so though you can read any files and
|
|
|
7684
7684
|
}
|
|
7685
7685
|
|
|
7686
7686
|
// src/cli/index.ts
|
|
7687
|
-
var getVersion = () => "3.
|
|
7687
|
+
var getVersion = () => "3.18.0";
|
|
7688
7688
|
var main = async () => {
|
|
7689
7689
|
const program = new Command();
|
|
7690
7690
|
const version = getVersion();
|