feat: higher version

This commit is contained in:
Nevo David 2024-03-11 23:21:53 +07:00
parent c0790ac0d4
commit af0f816115
59 changed files with 92 additions and 1082 deletions

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

View File

@ -19,15 +19,11 @@ config();
mkdirSync('./api-reference/custom', { recursive: true });
console.log(generate);
prod.navigation.push(...generate.nav.map((item) => ({
...item,
pages: item.pages.map((page) => 'api-reference/custom/' + page)
})));
console.log(prod);
writeFileSync('./mint.json', JSON.stringify(prod, null, 2));
const text = await (await fetch('https://api.gitroom.com/docs-json')).text();
writeFileSync('./openapi.json', text);

View File

@ -2,6 +2,9 @@
"name": "gitroom",
"version": "0.0.0",
"license": "MIT",
"engines": {
"node": ">=20.0.0 <21.0.0"
},
"scripts": {
"dev": "concurrently \"stripe listen --forward-to localhost:3000/stripe\" \"nx run-many --target=serve --projects=frontend,backend,workers --parallel=4\"",
"docs-build": "nx run docs:build:development",