try to fix build

This commit is contained in:
SPRINX0\prochazka 2024-11-13 14:52:48 +01:00
parent 97eb999e4c
commit 56a241b7f4

View File

@ -2,7 +2,7 @@ const fs = require('fs');
function adjustAppPackageJson(file) { function adjustAppPackageJson(file) {
const json = JSON.parse(fs.readFileSync(file, { encoding: 'utf-8' })); const json = JSON.parse(fs.readFileSync(file, { encoding: 'utf-8' }));
json.workspaces = ['../packages/*']; json.workspaces = ['../packages/tools', '../packages/types', '../packages/sqltree'];
fs.writeFileSync(file, JSON.stringify(json, null, 2), 'utf-8'); fs.writeFileSync(file, JSON.stringify(json, null, 2), 'utf-8');
} }