@fabr-client/core 0.1.1 → 0.1.3
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/package.json +16 -16
package/README.md
CHANGED
|
@@ -39,6 +39,10 @@ Set the shared Rust and npm package version first:
|
|
|
39
39
|
pwsh ./scripts/set-package-version.ps1 -Version 0.0.3
|
|
40
40
|
```
|
|
41
41
|
|
|
42
|
+
```bash
|
|
43
|
+
bash ./scripts/set-package-version.sh 0.0.3
|
|
44
|
+
```
|
|
45
|
+
|
|
42
46
|
For maintainers, build the Windows payload with PowerShell:
|
|
43
47
|
|
|
44
48
|
```powershell
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fabr-client/core",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "Cross-platform launcher for Fabr Client",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://pivot.enclaws.com",
|
|
@@ -11,23 +11,23 @@
|
|
|
11
11
|
"bugs": {
|
|
12
12
|
"url": "https://github.com/hashSTACS-Global/fabr-client/issues"
|
|
13
13
|
},
|
|
14
|
-
"bin": {
|
|
15
|
-
"fabr-client": "bin/fabr-client.js"
|
|
16
|
-
},
|
|
17
|
-
"scripts": {
|
|
18
|
-
"postinstall": "node postinstall.js",
|
|
19
|
-
"smoke": "node bin/fabr-client.js --help"
|
|
20
|
-
},
|
|
14
|
+
"bin": {
|
|
15
|
+
"fabr-client": "bin/fabr-client.js"
|
|
16
|
+
},
|
|
17
|
+
"scripts": {
|
|
18
|
+
"postinstall": "node postinstall.js",
|
|
19
|
+
"smoke": "node bin/fabr-client.js --help"
|
|
20
|
+
},
|
|
21
21
|
"optionalDependencies": {
|
|
22
|
-
"@fabr-client/core-win32-x64": "0.1.
|
|
23
|
-
"@fabr-client/core-darwin-x64": "0.1.
|
|
24
|
-
"@fabr-client/core-darwin-arm64": "0.1.
|
|
22
|
+
"@fabr-client/core-win32-x64": "0.1.3",
|
|
23
|
+
"@fabr-client/core-darwin-x64": "0.1.3",
|
|
24
|
+
"@fabr-client/core-darwin-arm64": "0.1.3"
|
|
25
25
|
},
|
|
26
|
-
"files": [
|
|
27
|
-
"bin/",
|
|
28
|
-
"postinstall.js",
|
|
29
|
-
"README.md"
|
|
30
|
-
],
|
|
26
|
+
"files": [
|
|
27
|
+
"bin/",
|
|
28
|
+
"postinstall.js",
|
|
29
|
+
"README.md"
|
|
30
|
+
],
|
|
31
31
|
"engines": {
|
|
32
32
|
"node": ">=18"
|
|
33
33
|
},
|