Socket
Socket
Sign inDemoInstall

madge

Package Overview
Dependencies
149
Maintainers
2
Versions
76
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 6.0.0 to 6.1.0

3

.release-it.json

@@ -6,5 +6,2 @@ {

},
"npm": {
"publish": false
},
"hooks": {

@@ -11,0 +8,0 @@ "after:bump": "auto-changelog --hide-credit --package"

13

bin/cli.js

@@ -30,2 +30,3 @@ #!/usr/bin/env node

.option('--dot', 'show graph using the DOT language')
.option('--rankdir <direction>', 'set the direction of the graph layout')
.option('--extensions <list>', 'comma separated string of valid file extensions')

@@ -78,3 +79,3 @@ .option('--require-config <file>', 'path to RequireJS config')

interval: 100000,
isEnabled: program.spinner
isEnabled: program.spinner === 'false' ? false : null
});

@@ -128,2 +129,6 @@

if (program.rankdir) {
config.rankdir = program.rankdir;
}
function dependencyFilter() {

@@ -138,6 +143,4 @@ let prevFile;

if (program.spinner) {
spinner.text = chalk.grey(dir) + chalk.cyan(file);
spinner.render();
}
spinner.text = chalk.grey(dir) + chalk.cyan(file);
prevFile = traversedFilePath;

@@ -144,0 +147,0 @@ }

@@ -5,4 +5,18 @@ ### Changelog

#### [v6.0.0](https://github.com/pahen/madge/compare/v5.0.2...v6.0.0)
#### [v6.1.0](https://github.com/pahen/madge/compare/v6.0.0...v6.1.0)
- constrain and bump typescript versions [`#376`](https://github.com/pahen/madge/pull/376)
- Disable spinner when running in CI [`#356`](https://github.com/pahen/madge/pull/356)
- Remove deploy to NPM from Travis build [`#354`](https://github.com/pahen/madge/pull/354)
- feat: support for rankdir in CLI [`#311`](https://github.com/pahen/madge/pull/311)
- Move typescript to peer dependencies [`#350`](https://github.com/pahen/madge/pull/350)
- Release 6.0.0 [`#352`](https://github.com/pahen/madge/pull/352)
- install and use ci-info [`c35da47`](https://github.com/pahen/madge/commit/c35da472e7352340209f4537d020b2702f9e67e7)
- remove ci-info and change isEnabled setting [`a771115`](https://github.com/pahen/madge/commit/a771115ce570c8ea8d4c3ca68300dcfa0b5759ea)
- control no-spinner from env var [`3a7d544`](https://github.com/pahen/madge/commit/3a7d544fc19b0e23a5e106da969274950e7f7ebc)
### [v6.0.0](https://github.com/pahen/madge/compare/v5.0.2...v6.0.0)
> 29 January 2023
- Handle collect tsconfig's extends fileds [`#349`](https://github.com/pahen/madge/pull/349)

@@ -16,4 +30,4 @@ - Update packages detective-* to latest [`#348`](https://github.com/pahen/madge/pull/348)

- Changed to depend on the ts-graphviz package [`9b9ae87`](https://github.com/pahen/madge/commit/9b9ae878622be4a58951c5fcb9d46cc0c44e4593)
- Release 6.0.0 [`2aa75b2`](https://github.com/pahen/madge/commit/2aa75b2aba279d02dd7cf7640a0fcd6236322228)
- update packages detective-* to latest [`60b6557`](https://github.com/pahen/madge/commit/60b6557efc5a1da04452dfc0f0b1a0281f9c8776)
- Set to Node.js 16 by default on nvm [`383452b`](https://github.com/pahen/madge/commit/383452b55294e3db1d8a9ef071b8b040ca295e14)

@@ -20,0 +34,0 @@ #### [v5.0.2](https://github.com/pahen/madge/compare/v5.0.1...v5.0.2)

{
"name": "madge",
"version": "6.0.0",
"version": "6.1.0",
"author": "Patrik Henningsson <patrik.henningsson@gmail.com>",

@@ -68,5 +68,12 @@ "repository": "git://github.com/pahen/madge",

"ts-graphviz": "^1.5.0",
"typescript": "^3.9.5",
"walkdir": "^0.4.1"
},
"peerDependencies": {
"typescript": "^3.9.5 || ^4.9.5 || ^5"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"devDependencies": {

@@ -79,4 +86,5 @@ "@aptoma/eslint-config": "^7.0.1",

"release-it": "^15.6.0",
"should": "^13.2.3"
"should": "^13.2.3",
"typescript": "^4.9.5"
}
}

@@ -378,4 +378,2 @@ <p align="center">

> Travis CI will automatically release the npm package to npmjs.com after a successful build.
```sh

@@ -382,0 +380,0 @@ npm run release

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc