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

Package detail

deps-flatlist-webpack

arndissler12MIT1.0.0

(flat)list dependencies of webpack bundles

webpack, license

readme

deps-flatlist-webpack

Creates lists for webpack modules

Usage


const getDepList = require('deps-flatlist-webpack')
const config = require('webpack.config.js')

  getDepList(config)
    .then((res) => {
      console.log(res)
    })
})