Skip to content

Commit 1f31f43

Browse files
Merge pull request #12 from beginwebdev2002/feature/recursive-architectural-readmes-2071596340378485761
🧹 docs: generate visually rich architectural readmes recursively across directories
2 parents 780d06b + fd923dc commit 1f31f43

4 files changed

Lines changed: 199 additions & 38 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ jobs:
1818
- name: Use Node.js
1919
uses: actions/setup-node@v4
2020
with:
21-
node-version: "20"
21+
node-version: "24"
2222
cache: "npm"
2323
cache-dependency-path: backend/package-lock.json
2424
- name: Install Dependencies
25-
run: npm ci
25+
run: npm ci --legacy-peer-deps
2626
- name: Build
2727
run: npm run build
2828

@@ -37,10 +37,10 @@ jobs:
3737
- name: Use Node.js
3838
uses: actions/setup-node@v4
3939
with:
40-
node-version: "22"
40+
node-version: "24"
4141
cache: "npm"
4242
cache-dependency-path: frontend/package-lock.json
4343
- name: Install Dependencies
44-
run: npm ci
44+
run: npm ci --legacy-peer-deps
4545
- name: Build
4646
run: npm run build -- --configuration production

backend/package-lock.json

Lines changed: 193 additions & 33 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

frontend/angular.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
},
2626
"browser": "index.tsx",
2727
"tsConfig": "tsconfig.json",
28+
"styles": [ "node_modules/leaflet/dist/leaflet.css" ],
2829
"polyfills": [
2930
"@angular/localize/init"
3031
],

frontend/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { bootstrapApplication } from '@angular/platform-browser';
33
import { AppComponent } from './src/app.component';
44
import { appConfig } from './src/app/app.config';
55

6-
import 'leaflet/dist/leaflet.css';
6+
77

88
bootstrapApplication(AppComponent, appConfig)
99
.catch((err) => console.error(err));

0 commit comments

Comments
 (0)