mirror of
https://github.com/pnpm/pnpm.git
synced 2026-03-28 12:01:37 -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))
|