plasmite 0.1.13 → 0.1.14
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 +0 -13
- package/bin/plasmite.js +1 -1
- package/index.js +1 -1
- package/native/darwin-arm64/index.node +0 -0
- package/native/darwin-arm64/libplasmite.dylib +0 -0
- package/native/darwin-arm64/plasmite +0 -0
- package/native/darwin-x64/index.node +0 -0
- package/native/darwin-x64/libplasmite.dylib +0 -0
- package/native/darwin-x64/plasmite +0 -0
- package/native/linux-arm64/index.node +0 -0
- package/native/linux-arm64/libplasmite.so +0 -0
- package/native/linux-arm64/plasmite +0 -0
- package/native/linux-x64/index.node +0 -0
- package/native/linux-x64/libplasmite.so +0 -0
- package/native/linux-x64/plasmite +0 -0
- package/package.json +4 -2
package/README.md
CHANGED
|
@@ -180,19 +180,6 @@ Pre-built binaries are included for Linux x86_64. macOS and Windows users
|
|
|
180
180
|
should install via Homebrew (`brew install sandover/tap/plasmite`) or build
|
|
181
181
|
from source.
|
|
182
182
|
|
|
183
|
-
## Contributing
|
|
184
|
-
|
|
185
|
-
Development requires a Rust toolchain to build the native addon:
|
|
186
|
-
|
|
187
|
-
```bash
|
|
188
|
-
# From the repo root
|
|
189
|
-
cargo build -p plasmite
|
|
190
|
-
cd bindings/node && PLASMITE_LIB_DIR=../../target/debug npm test
|
|
191
|
-
```
|
|
192
|
-
|
|
193
|
-
See the [main repo](https://github.com/sandover/plasmite) for full build
|
|
194
|
-
instructions.
|
|
195
|
-
|
|
196
183
|
## License
|
|
197
184
|
|
|
198
185
|
MIT
|
package/bin/plasmite.js
CHANGED
|
@@ -13,7 +13,7 @@ const fs = require("node:fs");
|
|
|
13
13
|
const path = require("node:path");
|
|
14
14
|
|
|
15
15
|
const PLATFORM_DIRS = Object.freeze({
|
|
16
|
-
linux: Object.freeze({ x64: "linux-x64" }),
|
|
16
|
+
linux: Object.freeze({ x64: "linux-x64", arm64: "linux-arm64" }),
|
|
17
17
|
darwin: Object.freeze({ x64: "darwin-x64", arm64: "darwin-arm64" }),
|
|
18
18
|
});
|
|
19
19
|
|
package/index.js
CHANGED
|
@@ -12,7 +12,7 @@ const sleep = (ms) => new Promise((resolve) => setTimeout(resolve, ms));
|
|
|
12
12
|
const path = require("node:path");
|
|
13
13
|
|
|
14
14
|
const PLATFORM_DIRS = Object.freeze({
|
|
15
|
-
linux: Object.freeze({ x64: "linux-x64" }),
|
|
15
|
+
linux: Object.freeze({ x64: "linux-x64", arm64: "linux-arm64" }),
|
|
16
16
|
darwin: Object.freeze({ x64: "darwin-x64", arm64: "darwin-arm64" }),
|
|
17
17
|
});
|
|
18
18
|
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "plasmite",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.14",
|
|
4
4
|
"description": "Persistent JSON message queues for Node.js - native bindings for local and remote IPC",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"types": "types.d.ts",
|
|
8
8
|
"bin": {
|
|
9
|
-
"plasmite": "bin/plasmite.js"
|
|
9
|
+
"plasmite": "bin/plasmite.js",
|
|
10
|
+
"pls": "bin/plasmite.js"
|
|
10
11
|
},
|
|
11
12
|
"files": [
|
|
12
13
|
"index.js",
|
|
@@ -15,6 +16,7 @@
|
|
|
15
16
|
"remote.js",
|
|
16
17
|
"bin/plasmite.js",
|
|
17
18
|
"native/linux-x64/**",
|
|
19
|
+
"native/linux-arm64/**",
|
|
18
20
|
"native/darwin-x64/**",
|
|
19
21
|
"native/darwin-arm64/**"
|
|
20
22
|
],
|