Skip to content

Commit 771a8c1

Browse files
authored
Feat: Startpage changelog (#1844)
1 parent 546bd13 commit 771a8c1

17 files changed

Lines changed: 1583 additions & 38 deletions

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,8 @@ storybook-static
116116
!.vscode/launch.json
117117
!backend_py/primary/.vscode/launch.json
118118

119+
frontend/docs/
120+
119121
# playwright results
120122
playwright-report/
121123
test-results/

docker-compose.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ services:
1313
- ./frontend/src:/usr/src/app/frontend/src
1414
- ./frontend/theme:/usr/src/app/frontend/theme
1515
- ./frontend/index.html:/usr/src/app/frontend/index.html
16+
- ./docs:/usr/src/app/docs
1617

1718
backend-primary:
1819
build:

docs/WEBVIZ_CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<!--::metadata
2+
changelog_counter: 0
3+
date: 05.08.2026
4+
-->
5+
6+
# Changelog
7+
8+
> We have not released any changelogs so far

frontend-dev.Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,7 @@ RUN npm ci --ignore-scripts
1515

1616
COPY --chown=node:node frontend/ ./
1717

18+
# Make doc files available for frontend imports
19+
COPY --chown=node:node docs/ ../docs
20+
1821
CMD ["npm", "run", "dev"]

frontend-prod.Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@ RUN npm ci --include=dev
2020

2121
COPY --chown=node:node frontend/ ./
2222

23+
# Make doc files available for frontend imports
24+
COPY --chown=node:node docs/ ../docs
25+
2326
RUN npm run build && node compress_static.cjs
2427

2528
###########################################

frontend/aliases.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"compilerOptions": {
33
"paths": {
4+
"@docs/*": ["../docs/*"],
45
"@api": ["./src/api"],
56
"@api/*": ["./src/api/autogen/*"],
67
"@assets/*": ["./src/assets/*"],

frontend/eslint.config.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,9 @@ export default eslintTypescript.config(
121121
{ pattern: "@core/**", group: "internal", position: "before" },
122122
{ pattern: "@components/**", group: "internal", position: "before" },
123123
{ pattern: "@shared-types/**", group: "internal", position: "before" },
124+
124125
{ pattern: "@assets/**", group: "internal", position: "before" },
126+
{ pattern: "@docs/**", group: "internal", position: "after" },
125127
{ pattern: "@/**", group: "internal" }, // fallback for anything else under @
126128
],
127129
pathGroupsExcludedImportTypes: ["react"],

0 commit comments

Comments
 (0)