2.3.0 • Published 10 months ago

dependency-stream v2.3.0

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
10 months ago

dependency-stream

Analyse and list all dependencies of an entrypoint as a stream

npm install dependency-stream

Usage

const DependencyStream = require('dependency-stream')

const d = new DependencyStream(drive, {
  entrypoint: '.', // thats the entrypoint to resolve
  preload: true, // preload as much as possible
  source: false, // include source in results
  strict: false, // if true, fail if something cannot be resolved
  conditions: [], // what conditions to apply to export maps
  builtins: setOrArray // set to the builtin modules of your runtime
})

for await (const data of d) {
  console.log(data) // the resolved dep
}

License

Apache-2.0

2.3.0

10 months ago

2.2.4

10 months ago

2.2.1

11 months ago

2.2.0

11 months ago

2.1.1

11 months ago

2.2.3

11 months ago

2.2.2

11 months ago

2.1.0

11 months ago

2.0.1

2 years ago

2.0.0

2 years ago

1.1.0

2 years ago

1.0.0

2 years ago

0.0.0

2 years ago