UNPKG

yarn-check

Version:

Check for outdated, incorrect, and unused dependencies.

12 lines (8 loc) 253 B
'use strict'; const npmCheck = require('./in'); const createState = require('./state/state'); function init(userOptions) { return createState(userOptions) .then(currentState => npmCheck(currentState)); } module.exports = init;