blob: 2d3efc506a99b4b83567d7419d15b6083609ddbe (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# yarn-lockfile
Parse and/or write `yarn.lock` files
## Usage Examples
```js
const fs = require('fs');
const lockfile = require('@yarnpkg/lockfile');
// or (es6)
import fs from 'fs';
import * as lockfile from '@yarnpkg/lockfile';
let file = fs.readFileSync('yarn.lock', 'utf8');
let json = lockfile.parse(file);
console.log(json);
let fileAgain = lockfile.stringify(json);
console.log(fileAgain);
```
|