mirror of
https://github.com/pnpm/pnpm.git
synced 2026-05-02 13:04:57 -04:00
8 lines
164 B
JavaScript
8 lines
164 B
JavaScript
'use strict'
|
|
const dependenciesHierarchy = require('../lib').default
|
|
|
|
dependenciesHierarchy(process.cwd(), {depth: 2})
|
|
.then(tree => {
|
|
console.log(tree)
|
|
})
|