Files
pnpm/packages/modules-yaml
2021-04-24 23:18:19 +03:00
..
2021-02-15 05:06:10 +02:00
2021-04-24 23:18:19 +03:00
2021-04-24 23:18:19 +03:00
2021-04-05 01:26:56 +03:00

@pnpm/modules-yaml

Reads/writes `node_modules/.modules.yaml`

npm version

Installation

<pnpm|npm|yarn> add @pnpm/modules-yaml

Usage

import {write, read} from '@pnpm/modules-yaml'

await write('node_modules', {
  hoistedAliases: {}
  layoutVersion: 1,
  packageManager: 'pnpm@1.0.0',
  pendingBuilds: [],
  shamefullyFlatten: false,
  skipped: [],
  storeDir: '/home/user/.pnpm-store',
})

const modulesYaml = await read(`node_modules`)

API

read(pathToDir): Promise<ModulesObject>

Reads .modules.yaml from the specified directory.

write(pathToDir, ModulesObject): Promise<void>

Writes a .modules.yaml file to the specified directory.

License

MIT