Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

deps: update to angular 18 #2516

Merged
merged 24 commits into from
Aug 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
4752d38
deps: run ng update @angular/core@18 @angular/cli@18
tomwwinter Aug 21, 2024
41fbe06
deps: run ng update @angular/material@18
tomwwinter Aug 21, 2024
3eaaa19
deps: update deps
tomwwinter Aug 21, 2024
d045412
deps: update typescript to 5.5.4
tomwwinter Aug 21, 2024
90613a1
test: fix test cases
tomwwinter Aug 21, 2024
9338d67
chore: first runnable version, performance still bad
tomwwinter Aug 21, 2024
bd5c297
fix: undo esbuild update
tomwwinter Aug 22, 2024
4d12943
style: linting
tomwwinter Aug 22, 2024
d05fe88
style: undo changes in translation files
tomwwinter Aug 22, 2024
9c1128a
ci: add code change
tomwwinter Aug 23, 2024
2268b52
ci: fix working directory for digests
tomwwinter Aug 23, 2024
f40fced
ci: remove debug code
tomwwinter Aug 23, 2024
0b8c0e0
build: update base images
tomwwinter Aug 23, 2024
d5789ff
build: update base images
tomwwinter Aug 23, 2024
3ef25dc
build: update base images
tomwwinter Aug 23, 2024
30497f9
build: migrate Dockerfile to node22-slim
tomwwinter Aug 23, 2024
b1ba530
typescript rules
sleidig Aug 27, 2024
2c93c38
Merge branch 'master' into tw/deps/update-angular-17-to-18
sleidig Aug 27, 2024
14be8ca
typescript rules uncomment
sleidig Aug 27, 2024
31459e8
Merge branch 'master' into tw/deps/update-angular-17-to-18
sleidig Aug 27, 2024
4688cec
fix typescript in tests
sleidig Aug 27, 2024
6f5dad9
Merge branch 'master' into tw/deps/update-angular-17-to-18
tomwwinter Aug 27, 2024
7f26655
fix: remove ci event echo
tomwwinter Aug 28, 2024
6558303
fix: add missing ts.config files in dockerfile
tomwwinter Aug 28, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions .github/workflows/pull-request-update-or-push-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -171,12 +171,6 @@ jobs:
- name: Checkout repository files
uses: actions/checkout@v4

- name: Echo Event
run: |
echo "${{ env.GITHUB_REF }}"
echo "${{ github.event.ref }}"
echo "${{ toJSON(github.event) }}"

- name: Extract tag (release)
if: ${{ github.event.ref != '' }}
run: echo "TAG=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
Expand Down
11 changes: 7 additions & 4 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"outputPath": "dist",
"index": "src/index.html",
"main": "src/main.ts",
"tsConfig": "src/tsconfig.app.json",
"tsConfig": "tsconfig.app.json",
"polyfills": "src/polyfills.ts",
"i18nMissingTranslation": "warning",
"assets": [
Expand Down Expand Up @@ -109,7 +109,7 @@
"src/polyfills.ts",
"zone.js/testing"
],
"tsConfig": "src/tsconfig.spec.json",
"tsConfig": "tsconfig.spec.json",
"styles": [
"src/styles/styles.scss",
"src/styles/themes/ndb-theme.scss"
Expand Down Expand Up @@ -198,9 +198,12 @@
}
},
"cli": {
"analytics": "0bd2cce5-bfb0-4375-af96-a8222d782810",
"cache": {
"enabled": true
},
"schematicCollections": [
"@angular-eslint/schematics"
]
],
"analytics": "3a23cbc9-8780-4947-bdf1-57719d16d60d"
}
}
4 changes: 4 additions & 0 deletions build/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,8 @@ COPY ./.prettierrc.json /opt/app/
COPY ./angular.json /opt/app/
COPY ./cypress.config.ts /opt/app/
COPY ./karma.conf.js /opt/app/
COPY ./tsconfig.app.json /opt/app/
COPY ./tsconfig.spec.json /opt/app/
COPY ./tsconfig.json /opt/app/
COPY ./ngsw-config.json /opt/app/

Expand All @@ -87,6 +89,8 @@ COPY ./src /opt/app/src/
COPY ./build /opt/app/build/
COPY ./angular.json /opt/app/
COPY ./tsconfig.json /opt/app/
COPY ./tsconfig.app.json /opt/app/
COPY ./tsconfig.spec.json /opt/app/
COPY ./ngsw-config.json /opt/app/

ARG APP_VERSION="UNKNOWN"
Expand Down
Loading