@neon-rs/cli 0.0.148 → 0.0.150
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 +9 -8
- package/package.json +8 -15
package/index.js
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
import { createRequire as __WEBPACK_EXTERNAL_createRequire } from "module";
|
|
3
3
|
/******/ var __webpack_modules__ = ({
|
|
4
4
|
|
|
5
|
+
/***/ 8168:
|
|
6
|
+
/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
7
|
+
|
|
8
|
+
module.exports = require(__nccwpck_require__.ab + "index.node")
|
|
9
|
+
|
|
10
|
+
/***/ }),
|
|
11
|
+
|
|
5
12
|
/***/ 4371:
|
|
6
13
|
/***/ ((__unused_webpack_module, exports) => {
|
|
7
14
|
|
|
@@ -15414,13 +15421,6 @@ function printError(e) {
|
|
|
15414
15421
|
}
|
|
15415
15422
|
|
|
15416
15423
|
|
|
15417
|
-
/***/ }),
|
|
15418
|
-
|
|
15419
|
-
/***/ 5969:
|
|
15420
|
-
/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
|
|
15421
|
-
|
|
15422
|
-
module.exports = require(__nccwpck_require__.ab + "index.node")
|
|
15423
|
-
|
|
15424
15424
|
/***/ }),
|
|
15425
15425
|
|
|
15426
15426
|
/***/ 5193:
|
|
@@ -15634,6 +15634,7 @@ class CargoReader {
|
|
|
15634
15634
|
const rl = readline.createInterface({
|
|
15635
15635
|
input: this._input
|
|
15636
15636
|
});
|
|
15637
|
+
|
|
15637
15638
|
for await (const line of rl) {
|
|
15638
15639
|
const { kernel, kind } = addon.readline(this._kernel, line);
|
|
15639
15640
|
switch (kind) {
|
|
@@ -15744,7 +15745,7 @@ module.exports = (__nccwpck_require__(4371)/* .lazy */ .Vo)({
|
|
|
15744
15745
|
'aarch64-pc-windows-msvc': () => __nccwpck_require__(9329),
|
|
15745
15746
|
'darwin-x64': () => __nccwpck_require__(5583),
|
|
15746
15747
|
'darwin-arm64': () => __nccwpck_require__(5111),
|
|
15747
|
-
'linux-x64-gnu': () => __nccwpck_require__(
|
|
15748
|
+
'linux-x64-gnu': () => __nccwpck_require__(8168),
|
|
15748
15749
|
'linux-arm-gnueabihf': () => __nccwpck_require__(6698),
|
|
15749
15750
|
'android-arm-eabi': () => __nccwpck_require__(5193)
|
|
15750
15751
|
}, [
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@neon-rs/cli",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.150",
|
|
4
4
|
"description": "Command-line build tool for Neon modules.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": "./index.js",
|
|
@@ -27,19 +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/
|
|
32
|
-
"@cargo-messages/darwin-
|
|
33
|
-
"@cargo-messages/
|
|
34
|
-
"@cargo-messages/
|
|
35
|
-
"@cargo-messages/
|
|
36
|
-
"@cargo-messages/
|
|
37
|
-
"@cargo-messages/linux-arm-gnueabihf0.0.148": "*",
|
|
38
|
-
"@cargo-messages/linux-x64-gnu": "0.0.140",
|
|
39
|
-
"@cargo-messages/linux-x64-gnu0.0.148": "*",
|
|
40
|
-
"@cargo-messages/win32-arm64-msvc": "0.0.140",
|
|
41
|
-
"@cargo-messages/win32-arm64-msvc0.0.148": "*",
|
|
42
|
-
"@cargo-messages/win32-x64-msvc": "0.0.140",
|
|
43
|
-
"@cargo-messages/win32-x64-msvc0.0.148": "*"
|
|
30
|
+
"@cargo-messages/android-arm-eabi": "0.0.150",
|
|
31
|
+
"@cargo-messages/darwin-arm64": "0.0.150",
|
|
32
|
+
"@cargo-messages/darwin-x64": "0.0.150",
|
|
33
|
+
"@cargo-messages/linux-arm-gnueabihf": "0.0.150",
|
|
34
|
+
"@cargo-messages/linux-x64-gnu": "0.0.150",
|
|
35
|
+
"@cargo-messages/win32-arm64-msvc": "0.0.150",
|
|
36
|
+
"@cargo-messages/win32-x64-msvc": "0.0.150"
|
|
44
37
|
}
|
|
45
38
|
}
|