@neon-rs/cli 0.1.40 → 0.1.43

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 -9
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -2,7 +2,7 @@
2
2
  import { createRequire as __WEBPACK_EXTERNAL_createRequire } from "module";
3
3
  /******/ var __webpack_modules__ = ({
4
4
 
5
- /***/ 3355:
5
+ /***/ 4079:
6
6
  /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
7
7
 
8
8
  module.exports = require(__nccwpck_require__.ab + "index.node")
@@ -40443,8 +40443,10 @@ class Dist {
40443
40443
  }
40444
40444
  async run() {
40445
40445
  const file = this._file || (await this.findArtifact());
40446
+ const out = await this._out;
40447
+ this.log(`output file = ${out}`);
40446
40448
  // FIXME: needs all the logic of cargo-cp-artifact (timestamp check, M1 workaround, async, errors)
40447
- await (0,promises_.copyFile)(file, await this._out);
40449
+ await (0,promises_.copyFile)(file, out);
40448
40450
  }
40449
40451
  }
40450
40452
 
@@ -45745,18 +45747,18 @@ module.exports = eval("require")("@cargo-messages/darwin-arm64");
45745
45747
 
45746
45748
  /***/ }),
45747
45749
 
45748
- /***/ 2990:
45750
+ /***/ 5379:
45749
45751
  /***/ ((module) => {
45750
45752
 
45751
- module.exports = eval("require")("@cargo-messages/darwin-x64");
45753
+ module.exports = eval("require")("@cargo-messages/linux-arm-gnueabihf");
45752
45754
 
45753
45755
 
45754
45756
  /***/ }),
45755
45757
 
45756
- /***/ 5379:
45758
+ /***/ 1316:
45757
45759
  /***/ ((module) => {
45758
45760
 
45759
- module.exports = eval("require")("@cargo-messages/linux-arm-gnueabihf");
45761
+ module.exports = eval("require")("@cargo-messages/linux-x64-gnu");
45760
45762
 
45761
45763
 
45762
45764
  /***/ }),
@@ -60527,12 +60529,12 @@ module.exports = {
60527
60529
  /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
60528
60530
 
60529
60531
  module.exports = (__nccwpck_require__(8372)/* .proxy */ .sj)({
60530
- 'darwin-x64': () => __nccwpck_require__(2990),
60532
+ 'darwin-x64': () => __nccwpck_require__(4079),
60531
60533
  'win32-x64-msvc': () => __nccwpck_require__(1324),
60532
60534
  'win32-arm64-msvc': () => __nccwpck_require__(7894),
60533
- 'darwin-x64': () => __nccwpck_require__(2990),
60535
+ 'darwin-x64': () => __nccwpck_require__(4079),
60534
60536
  'darwin-arm64': () => __nccwpck_require__(4404),
60535
- 'linux-x64-gnu': () => __nccwpck_require__(3355),
60537
+ 'linux-x64-gnu': () => __nccwpck_require__(1316),
60536
60538
  'linux-arm-gnueabihf': () => __nccwpck_require__(5379),
60537
60539
  'android-arm-eabi': () => __nccwpck_require__(1738)
60538
60540
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@neon-rs/cli",
3
- "version": "0.1.40",
3
+ "version": "0.1.43",
4
4
  "description": "Command-line build tool for Neon modules.",
5
5
  "type": "module",
6
6
  "exports": "./index.js",