Skip to content
This repository was archived by the owner on Mar 13, 2024. It is now read-only.

Commit edfde9b

Browse files
committedJul 28, 2019
SEMIBREAKING: Remove --no-dev/no-peer from missing
1 parent c3e7b20 commit edfde9b

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed
 

‎cli.js

+6-1
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,13 @@ check({
9999
}
100100
}
101101
if (runAllTests || args.missing) {
102-
const missing = check.missing(pkg, deps, options)
102+
const missing = check.missing(pkg, deps, Object.assign({}, options, {
103+
excludeDev: false,
104+
excludePeer: false
105+
}))
106+
103107
failed += missing.length
108+
104109
if (missing.length) {
105110
console.error('Fail! Dependencies not listed in package.json: ' + missing.join(', '))
106111
} else if (args.verbose) {

0 commit comments

Comments
 (0)
This repository has been archived.