@neon-rs/cli 0.1.78 → 0.1.80

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 +25 -5
  2. package/package.json +11 -9
package/index.js CHANGED
@@ -42113,7 +42113,7 @@ const add_OPTIONS = [
42113
42113
  ];
42114
42114
  class Add {
42115
42115
  static summary() { return 'Add a platform or platform preset to a Neon project.'; }
42116
- static syntax() { return 'neon add [<p> | --os <a> --arch <b> [--abi <c>]] [-o <d>] [-b <f>]'; }
42116
+ static syntax() { return 'neon add [<p> | --os <a> --arch <b> [--abi <c>]] [-o <d>]'; }
42117
42117
  static options() {
42118
42118
  return [
42119
42119
  { name: '<p>', summary: 'A Node platform or platform preset.' },
@@ -46093,6 +46093,14 @@ module.exports = eval("require")("@cargo-messages/linux-arm-gnueabihf");
46093
46093
  module.exports = eval("require")("@cargo-messages/linux-arm64-gnu");
46094
46094
 
46095
46095
 
46096
+ /***/ }),
46097
+
46098
+ /***/ 4134:
46099
+ /***/ ((module) => {
46100
+
46101
+ module.exports = eval("require")("@cargo-messages/linux-arm64-musl");
46102
+
46103
+
46096
46104
  /***/ }),
46097
46105
 
46098
46106
  /***/ 1316:
@@ -46101,6 +46109,14 @@ module.exports = eval("require")("@cargo-messages/linux-arm64-gnu");
46101
46109
  module.exports = eval("require")("@cargo-messages/linux-x64-gnu");
46102
46110
 
46103
46111
 
46112
+ /***/ }),
46113
+
46114
+ /***/ 6469:
46115
+ /***/ ((module) => {
46116
+
46117
+ module.exports = eval("require")("@cargo-messages/linux-x64-musl");
46118
+
46119
+
46104
46120
  /***/ }),
46105
46121
 
46106
46122
  /***/ 7894:
@@ -60877,7 +60893,9 @@ module.exports = (__nccwpck_require__(8372)/* .proxy */ .sj)({
60877
60893
  'linux-x64-gnu': () => __nccwpck_require__(1316),
60878
60894
  'linux-arm-gnueabihf': () => __nccwpck_require__(5379),
60879
60895
  'android-arm-eabi': () => __nccwpck_require__(1738),
60880
- 'linux-arm64-gnu': () => __nccwpck_require__(1713)
60896
+ 'linux-arm64-gnu': () => __nccwpck_require__(1713),
60897
+ 'linux-arm64-musl': () => __nccwpck_require__(4134),
60898
+ 'linux-x64-musl': () => __nccwpck_require__(6469)
60881
60899
  });
60882
60900
 
60883
60901
 
@@ -61829,9 +61847,11 @@ exports.expandPlatformPreset = expandPlatformPreset;
61829
61847
  function expandPlatformFamily(family) {
61830
61848
  return isPlatformPreset(family)
61831
61849
  ? expandPlatformPreset(family)
61832
- : Array.isArray(family)
61833
- ? merge(family.map(expandPlatformFamily))
61834
- : family;
61850
+ : isNodePlatform(family)
61851
+ ? { [family]: node2Rust(family)[0] }
61852
+ : Array.isArray(family)
61853
+ ? merge(family.map(expandPlatformFamily))
61854
+ : family;
61835
61855
  }
61836
61856
  exports.expandPlatformFamily = expandPlatformFamily;
61837
61857
  function describeTarget(target) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@neon-rs/cli",
3
- "version": "0.1.78",
3
+ "version": "0.1.80",
4
4
  "description": "Command-line build tool for Neon modules.",
5
5
  "type": "module",
6
6
  "exports": "./index.js",
@@ -27,13 +27,15 @@
27
27
  },
28
28
  "homepage": "https://github.com/dherman/neon-rs#readme",
29
29
  "optionalDependencies": {
30
- "@cargo-messages/android-arm-eabi": "0.1.77",
31
- "@cargo-messages/darwin-arm64": "0.1.77",
32
- "@cargo-messages/darwin-x64": "0.1.77",
33
- "@cargo-messages/linux-arm-gnueabihf": "0.1.77",
34
- "@cargo-messages/linux-arm64-gnu": "0.1.77",
35
- "@cargo-messages/linux-x64-gnu": "0.1.77",
36
- "@cargo-messages/win32-arm64-msvc": "0.1.77",
37
- "@cargo-messages/win32-x64-msvc": "0.1.77"
30
+ "@cargo-messages/android-arm-eabi": "0.1.79",
31
+ "@cargo-messages/darwin-arm64": "0.1.79",
32
+ "@cargo-messages/darwin-x64": "0.1.79",
33
+ "@cargo-messages/linux-arm-gnueabihf": "0.1.79",
34
+ "@cargo-messages/linux-arm64-gnu": "0.1.79",
35
+ "@cargo-messages/linux-arm64-musl": "0.1.79",
36
+ "@cargo-messages/linux-x64-gnu": "0.1.79",
37
+ "@cargo-messages/linux-x64-musl": "0.1.79",
38
+ "@cargo-messages/win32-arm64-msvc": "0.1.79",
39
+ "@cargo-messages/win32-x64-msvc": "0.1.79"
38
40
  }
39
41
  }