@neon-rs/cli 0.1.39 → 0.1.42

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.
Files changed (2) hide show
  1. package/index.js +11 -10
  2. package/package.json +8 -8
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
+ /***/ 3355:
6
+ /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
7
+
8
+ module.exports = require(__nccwpck_require__.ab + "index.node")
9
+
10
+ /***/ }),
11
+
5
12
  /***/ 8938:
6
13
  /***/ ((__unused_webpack_module, exports) => {
7
14
 
@@ -40436,8 +40443,10 @@ class Dist {
40436
40443
  }
40437
40444
  async run() {
40438
40445
  const file = this._file || (await this.findArtifact());
40446
+ const out = await this._out;
40447
+ this.log(`output file = ${out}`);
40439
40448
  // FIXME: needs all the logic of cargo-cp-artifact (timestamp check, M1 workaround, async, errors)
40440
- await (0,promises_.copyFile)(file, await this._out);
40449
+ await (0,promises_.copyFile)(file, out);
40441
40450
  }
40442
40451
  }
40443
40452
 
@@ -45752,14 +45761,6 @@ module.exports = eval("require")("@cargo-messages/darwin-x64");
45752
45761
  module.exports = eval("require")("@cargo-messages/linux-arm-gnueabihf");
45753
45762
 
45754
45763
 
45755
- /***/ }),
45756
-
45757
- /***/ 1316:
45758
- /***/ ((module) => {
45759
-
45760
- module.exports = eval("require")("@cargo-messages/linux-x64-gnu");
45761
-
45762
-
45763
45764
  /***/ }),
45764
45765
 
45765
45766
  /***/ 7894:
@@ -60533,7 +60534,7 @@ module.exports = (__nccwpck_require__(8372)/* .proxy */ .sj)({
60533
60534
  'win32-arm64-msvc': () => __nccwpck_require__(7894),
60534
60535
  'darwin-x64': () => __nccwpck_require__(2990),
60535
60536
  'darwin-arm64': () => __nccwpck_require__(4404),
60536
- 'linux-x64-gnu': () => __nccwpck_require__(1316),
60537
+ 'linux-x64-gnu': () => __nccwpck_require__(3355),
60537
60538
  'linux-arm-gnueabihf': () => __nccwpck_require__(5379),
60538
60539
  'android-arm-eabi': () => __nccwpck_require__(1738)
60539
60540
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@neon-rs/cli",
3
- "version": "0.1.39",
3
+ "version": "0.1.42",
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.1.37",
31
- "@cargo-messages/darwin-arm64": "0.1.26",
32
- "@cargo-messages/darwin-x64": "0.1.26",
33
- "@cargo-messages/linux-arm-gnueabihf": "0.1.26",
34
- "@cargo-messages/linux-x64-gnu": "0.1.26",
35
- "@cargo-messages/win32-arm64-msvc": "0.1.26",
36
- "@cargo-messages/win32-x64-msvc": "0.1.26"
30
+ "@cargo-messages/android-arm-eabi": "0.1.27",
31
+ "@cargo-messages/darwin-arm64": "0.1.27",
32
+ "@cargo-messages/darwin-x64": "0.1.27",
33
+ "@cargo-messages/linux-arm-gnueabihf": "0.1.27",
34
+ "@cargo-messages/linux-x64-gnu": "0.1.27",
35
+ "@cargo-messages/win32-arm64-msvc": "0.1.27",
36
+ "@cargo-messages/win32-x64-msvc": "0.1.27"
37
37
  }
38
38
  }