Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

find-elm-dependencies

noredink118.3kBSD-3-Clause2.0.4

Find elm dependencies

elm, dependencies, node

readme

find-elm-dependencies

Find elm dependencies of a given entry file.

Installation

$ npm i find-elm-dependencies -S

Usage

var findAllDependencies = require('find-elm-dependencies').findAllDependencies;

findAllDependencies('./path/to/Main.elm')
  .then(function(dependencies) {
    console.log(dependencies);
  });

This was extracted from https://github.com/rtfeldman/node-elm-compiler