mirror of
https://github.com/pnpm/pnpm.git
synced 2026-03-26 02:51:59 -04:00
9 lines
215 B
JavaScript
9 lines
215 B
JavaScript
'use strict'
|
|
const fs = require('fs')
|
|
const path = require('path')
|
|
const EOL = require('os').EOL
|
|
|
|
module.exports = function (pkgPath, pkg) {
|
|
fs.writeFileSync(pkgPath, JSON.stringify(pkg, null, 2) + EOL, 'utf8')
|
|
}
|