mirror of
https://github.com/pnpm/pnpm.git
synced 2026-03-26 11:02:01 -04:00
8 lines
196 B
JavaScript
8 lines
196 B
JavaScript
'use strict'
|
|
const writePkgSync = require('./writePkgSync')
|
|
const path = require('path')
|
|
|
|
module.exports = function (pkg) {
|
|
writePkgSync(path.join(__dirname, '..', '..', 'package.json'), pkg)
|
|
}
|