mirror of
https://github.com/pnpm/pnpm.git
synced 2026-07-25 15:07:06 -04:00
7 lines
218 B
JavaScript
7 lines
218 B
JavaScript
const path = require('path')
|
|
const findPkgs = require('@pnpm/fs.find-packages')
|
|
|
|
findPkgs(path.join(import.meta.dirname, 'test/fixtures/one-pkg'))
|
|
.then(pkgs => console.log(pkgs))
|
|
.catch(err => console.error(err))
|