@neon-rs/cli 0.0.164 → 0.0.165

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 +1 -1
  2. package/package.json +8 -8
package/index.js CHANGED
@@ -12091,7 +12091,7 @@ function assertIsBinaryCfg(json) {
12091
12091
  if (typeof json.rust !== 'string' || !isRustTarget(json.rust)) {
12092
12092
  throw new TypeError(`expected "neon.rust" to be a valid Rust target, found ${json.rust}`);
12093
12093
  }
12094
- if (typeof json.node !== 'string' || !isNodeTarget(json.rust)) {
12094
+ if (typeof json.node !== 'string' || !isNodeTarget(json.node)) {
12095
12095
  throw new TypeError(`expected "neon.node" to be a valid Node target, found ${json.node}`);
12096
12096
  }
12097
12097
  if (typeof json.platform !== 'string') {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@neon-rs/cli",
3
- "version": "0.0.164",
3
+ "version": "0.0.165",
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.164",
31
- "@cargo-messages/darwin-arm64": "0.0.164",
32
- "@cargo-messages/darwin-x64": "0.0.164",
33
- "@cargo-messages/linux-arm-gnueabihf": "0.0.164",
34
- "@cargo-messages/linux-x64-gnu": "0.0.164",
35
- "@cargo-messages/win32-arm64-msvc": "0.0.164",
36
- "@cargo-messages/win32-x64-msvc": "0.0.164"
30
+ "@cargo-messages/android-arm-eabi": "0.0.165",
31
+ "@cargo-messages/darwin-arm64": "0.0.165",
32
+ "@cargo-messages/darwin-x64": "0.0.165",
33
+ "@cargo-messages/linux-arm-gnueabihf": "0.0.165",
34
+ "@cargo-messages/linux-x64-gnu": "0.0.165",
35
+ "@cargo-messages/win32-arm64-msvc": "0.0.165",
36
+ "@cargo-messages/win32-x64-msvc": "0.0.165"
37
37
  }
38
38
  }