mam 1.11.746 → 1.11.747

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.
package/node.js CHANGED
@@ -6832,7 +6832,7 @@ var $;
6832
6832
  for (let dep of this.nodeDeps([path, exclude]).keys()) {
6833
6833
  if (require('module').builtinModules.includes(dep) || dep.startsWith('node:'))
6834
6834
  continue;
6835
- json.dependencies[dep] = `*`;
6835
+ json.dependencies[dep] ??= `*`;
6836
6836
  }
6837
6837
  json.keywords = [...this.graph([path, exclude]).nodes]
6838
6838
  .filter(Boolean)