mam 1.11.811 → 1.11.812

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.mjs CHANGED
@@ -6881,6 +6881,8 @@ var $;
6881
6881
  for (let dep of this.nodeDeps([path, exclude]).keys()) {
6882
6882
  if ($node_internal_check(dep))
6883
6883
  continue;
6884
+ if (dep === 'internal')
6885
+ continue;
6884
6886
  json.dependencies[dep] ??= `*`;
6885
6887
  }
6886
6888
  json.keywords = [...this.graph([path, exclude]).nodes]
package/node.test.js CHANGED
@@ -6872,6 +6872,8 @@ var $;
6872
6872
  for (let dep of this.nodeDeps([path, exclude]).keys()) {
6873
6873
  if ($node_internal_check(dep))
6874
6874
  continue;
6875
+ if (dep === 'internal')
6876
+ continue;
6875
6877
  json.dependencies[dep] ??= `*`;
6876
6878
  }
6877
6879
  json.keywords = [...this.graph([path, exclude]).nodes]