pubspecYamlSupportsNode function

bool pubspecYamlSupportsNode(
  1. Map map
)

True if the pubspec.yaml has the node build dependency. Not supported.

Implementation

bool pubspecYamlSupportsNode(Map map) {
  return pubspecYamlHasAnyDependencies(map, ['build_node_compilers']);
}