mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-18 02:06:01 +00:00
10 lines
278 B
JavaScript
10 lines
278 B
JavaScript
const fs = require('fs');
|
|
|
|
function adjustRootPackageJson(file) {
|
|
const json = JSON.parse(fs.readFileSync(file, { encoding: 'utf-8' }));
|
|
json.workspaces.push('app');
|
|
fs.writeFileSync(file, JSON.stringify(json, null, 2), 'utf-8');
|
|
}
|
|
|
|
adjustRootPackageJson('package.json');
|