@neon-rs/cli 0.1.40 → 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 +3 -1
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -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
 
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.42",
4
4
  "description": "Command-line build tool for Neon modules.",
5
5
  "type": "module",
6
6
  "exports": "./index.js",