mirror of
https://github.com/pnpm/pnpm.git
synced 2026-03-23 09:31:52 -04:00
7 lines
199 B
JavaScript
7 lines
199 B
JavaScript
const path = require('path')
|
|
const findPkgs = require('find-packages')
|
|
|
|
findPkgs(path.join(__dirname, 'test/fixtures/one-pkg'))
|
|
.then(pkgs => console.log(pkgs))
|
|
.catch(err => console.error(err))
|