You're Invited: Meet the Socket team at BSidesSF and RSAC - April 27 - May 1.RSVP
Socket
Sign inDemoInstall
Socket

circular-dependency-test

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

circular-dependency-test

Detects circular dependencies in modules compiled with Webpack

0.2.0
Source
npm
Version published
Maintainers
1
Created
Source

circular-dependency-test

Detects circular dependencies in modules compiled with Webpack.

install

npm install --save-dev circular-dependency-test

Graphviz (optional)

Only required if you want to generate visual graphs using Graphviz.

Mac OS X
brew install graphviz || port install graphviz
Ubuntu
apt-get install graphviz

run

If your Webpack config is in ./webpack.config.js setup a script in package.json of your project:

{
  "scripts": {
    "test:dependency": "circular-dependency-test"
  }
}

For custom webpack config path:

{
  "scripts": {
    "test:dependency":
      "circular-dependency-test --config=config/my-webpack.config.js"
  }
}

Then run:

npm run test:dependency

parameters

config

Custom path to Webpack config.

circular-dependency-test --config=config/my-webpack.config.js

exclude

Regular expression to exclude files from dependency test. By default dependencies from node_modules are excluded.

circular-dependency-test --exclude='.+\.types\.ts|node_modules'

image

Creates dependency graph. Default format is gif.

Requires Graphviz to be installed.

circular-dependency-test --image=reports/dependency-graph.gif

format

Creates dependency graph in desired format. See all formats: https://graphviz.gitlab.io/_pages/doc/info/output.html

Most common image types: gif png svg jp2 jpg pdf

circular-dependency-test --image=reports/dependency-graph.svg --format=svg

timestamp

Saves the image file with a timestamp.

circular-dependency-test --image=reports/dependency-graph.gif --timestamp

project dependencies

  • Based on circular-dependency-plugin.
  • Works with Webpack >=4.0.1

For creating visual graphs:

Keywords

circural

FAQs

Package last updated on 21 Apr 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts