dependency-check icon indicating copy to clipboard operation
dependency-check copied to clipboard

Support `browser` resolution

Open blakeembrey opened this issue 8 years ago • 1 comments

By specing out the configuration required to make a feature like this possible, it'd be possible to re-use for other dependency files. Something like:

interface Dependency {
  entry: string
  aliases: { [name: string]: string } // Map of aliases - might want to support a wildcard syntax mapping here.
  dependencies: string[]
  devDependencies: string[]
  include: string[] // List of globs to include (`package.json` files)
  ignore: string[] // List of globs to ignore (a la `.npmignore`)
}

With a this complete definition supported, it should also close https://github.com/maxogden/dependency-check/issues/46 and https://github.com/maxogden/dependency-check/issues/32. Probably also https://github.com/maxogden/dependency-check/issues/25 as part of it.

blakeembrey avatar Apr 21 '17 22:04 blakeembrey

Ran into this tonight. 👍

bcomnes avatar Sep 12 '17 04:09 bcomnes