@neon-rs/cli 0.0.127 → 0.0.129
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/index.js +1 -1
- package/package.json +8 -8
package/index.js
CHANGED
|
@@ -15559,7 +15559,7 @@ class CargoMessages {
|
|
|
15559
15559
|
this._verbose = options.verbose || false;
|
|
15560
15560
|
this._kernel = options.file
|
|
15561
15561
|
? addon.fromFile(options.file, this._mount, this._manifestPath, this._verbose)
|
|
15562
|
-
: addon.fromStdin(this._mount, this._manifestPath, this._verbose);
|
|
15562
|
+
: (process.stdin.resume(), addon.fromStdin(this._mount, this._manifestPath, this._verbose));
|
|
15563
15563
|
}
|
|
15564
15564
|
|
|
15565
15565
|
findArtifact(crateName) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@neon-rs/cli",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.129",
|
|
4
4
|
"description": "Command-line build tool for Neon modules.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": "./index.js",
|
|
@@ -27,12 +27,12 @@
|
|
|
27
27
|
},
|
|
28
28
|
"homepage": "https://github.com/dherman/neon-rs#readme",
|
|
29
29
|
"optionalDependencies": {
|
|
30
|
-
"@cargo-messages/android-arm-eabi": "0.0.
|
|
31
|
-
"@cargo-messages/darwin-arm64": "0.0.
|
|
32
|
-
"@cargo-messages/darwin-x64": "0.0.
|
|
33
|
-
"@cargo-messages/linux-arm-gnueabihf": "0.0.
|
|
34
|
-
"@cargo-messages/linux-x64-gnu": "0.0.
|
|
35
|
-
"@cargo-messages/win32-arm64-msvc": "0.0.
|
|
36
|
-
"@cargo-messages/win32-x64-msvc": "0.0.
|
|
30
|
+
"@cargo-messages/android-arm-eabi": "0.0.128",
|
|
31
|
+
"@cargo-messages/darwin-arm64": "0.0.128",
|
|
32
|
+
"@cargo-messages/darwin-x64": "0.0.128",
|
|
33
|
+
"@cargo-messages/linux-arm-gnueabihf": "0.0.128",
|
|
34
|
+
"@cargo-messages/linux-x64-gnu": "0.0.128",
|
|
35
|
+
"@cargo-messages/win32-arm64-msvc": "0.0.128",
|
|
36
|
+
"@cargo-messages/win32-x64-msvc": "0.0.128"
|
|
37
37
|
}
|
|
38
38
|
}
|