@deltachat/stdio-rpc-server 1.151.3 → 1.151.4
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 -3
- package/package.json +11 -11
package/README.md
CHANGED
|
@@ -65,13 +65,13 @@ so by default it uses the prebuilds.
|
|
|
65
65
|
- this will run `update_optional_dependencies_and_version.js` (in the `prepack` script),
|
|
66
66
|
which puts all platform packages into `optionalDependencies` and updates the `version` in `package.json`
|
|
67
67
|
|
|
68
|
-
## How to build a version you can use
|
|
68
|
+
## How to build a version you can use locally on your host machine for development
|
|
69
69
|
|
|
70
|
-
You can not install the npm packet from the previous section locally, unless you have a local npm registry set up where you upload it too. This is why we have
|
|
70
|
+
You can not install the npm packet from the previous section locally, unless you have a local npm registry set up where you upload it too. This is why we have separate scripts for making it work for local installation.
|
|
71
71
|
|
|
72
72
|
- If you just need your host platform run `python scripts/make_local_dev_version.py`
|
|
73
73
|
- note: this clears the `platform_package` folder
|
|
74
|
-
- (advanced) If you need more than one platform for local install you can just run `node scripts/update_optional_dependencies_and_version.js` after building multiple
|
|
74
|
+
- (advanced) If you need more than one platform for local install you can just run `node scripts/update_optional_dependencies_and_version.js` after building multiple platforms with `build_platform_package.py`
|
|
75
75
|
|
|
76
76
|
## Thanks to nlnet
|
|
77
77
|
|
package/package.json
CHANGED
|
@@ -3,16 +3,16 @@
|
|
|
3
3
|
"main": "index.js",
|
|
4
4
|
"name": "@deltachat/stdio-rpc-server",
|
|
5
5
|
"optionalDependencies": {
|
|
6
|
-
"@deltachat/stdio-rpc-server-darwin-arm64": "1.151.
|
|
7
|
-
"@deltachat/stdio-rpc-server-android-arm64": "1.151.
|
|
8
|
-
"@deltachat/stdio-rpc-server-linux-arm64": "1.151.
|
|
9
|
-
"@deltachat/stdio-rpc-server-linux-arm": "1.151.
|
|
10
|
-
"@deltachat/stdio-rpc-server-android-arm": "1.151.
|
|
11
|
-
"@deltachat/stdio-rpc-server-win32-ia32": "1.151.
|
|
12
|
-
"@deltachat/stdio-rpc-server-linux-ia32": "1.151.
|
|
13
|
-
"@deltachat/stdio-rpc-server-darwin-x64": "1.151.
|
|
14
|
-
"@deltachat/stdio-rpc-server-win32-x64": "1.151.
|
|
15
|
-
"@deltachat/stdio-rpc-server-linux-x64": "1.151.
|
|
6
|
+
"@deltachat/stdio-rpc-server-darwin-arm64": "1.151.4",
|
|
7
|
+
"@deltachat/stdio-rpc-server-android-arm64": "1.151.4",
|
|
8
|
+
"@deltachat/stdio-rpc-server-linux-arm64": "1.151.4",
|
|
9
|
+
"@deltachat/stdio-rpc-server-linux-arm": "1.151.4",
|
|
10
|
+
"@deltachat/stdio-rpc-server-android-arm": "1.151.4",
|
|
11
|
+
"@deltachat/stdio-rpc-server-win32-ia32": "1.151.4",
|
|
12
|
+
"@deltachat/stdio-rpc-server-linux-ia32": "1.151.4",
|
|
13
|
+
"@deltachat/stdio-rpc-server-darwin-x64": "1.151.4",
|
|
14
|
+
"@deltachat/stdio-rpc-server-win32-x64": "1.151.4",
|
|
15
|
+
"@deltachat/stdio-rpc-server-linux-x64": "1.151.4"
|
|
16
16
|
},
|
|
17
17
|
"peerDependencies": {
|
|
18
18
|
"@deltachat/jsonrpc-client": "*"
|
|
@@ -26,5 +26,5 @@
|
|
|
26
26
|
},
|
|
27
27
|
"type": "module",
|
|
28
28
|
"types": "index.d.ts",
|
|
29
|
-
"version": "1.151.
|
|
29
|
+
"version": "1.151.4"
|
|
30
30
|
}
|