chore(monorepo): adapt update-build-info

This commit is contained in:
Elian Doran 2025-04-18 16:46:34 +03:00
parent a271e57ac1
commit c62fb0fb54
No known key found for this signature in database
3 changed files with 4 additions and 4 deletions

View File

@ -44,7 +44,6 @@
"dev:format-fix": "eslint -c eslint.format.config.js . --fix",
"dev:linter-check": "eslint .",
"dev:linter-fix": "eslint . --fix",
"chore:update-build-info": "tsx bin/update-build-info.ts",
"chore:generate-document": "cross-env nodemon ./bin/generate_document.ts 1000",
"chore:generate-openapi": "tsx bin/generate-openapi.js"
},

View File

@ -13,7 +13,8 @@
"packages/*"
],
"scripts": {
"chore:ci-update-nightly-version": "tsx ./scripts/update-nightly-version.ts"
"chore:ci-update-nightly-version": "tsx ./scripts/update-nightly-version.ts",
"chore:update-build-info": "tsx ./scripts/update-build-info.ts"
},
"devDependencies": {
"tsx": "^4.19.3"

View File

@ -18,4 +18,4 @@ export default {
};
`;
fs.writeFileSync("src/services/build.ts", output);
fs.writeFileSync("apps/server/src/services/build.ts", output);