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

Update to Angular 17 #214

Draft
wants to merge 30 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
04de5f3
Update ts-version
Nov 8, 2024
1878309
Update angular to v17
Nov 8, 2024
5741b66
Update clarity ui to v17
Nov 19, 2024
701b542
Refactor markdown component
Nov 19, 2024
b902db3
Add missing svg pipe for mermaid
Nov 19, 2024
990fd09
Fix path to NoteType
Nov 19, 2024
7721b42
Add style sheets
Nov 19, 2024
7296449
Fix tooltip... add missing styles
Nov 19, 2024
5a4a418
Add theme service, improve user service
Nov 19, 2024
34b3a4a
Set background color via variable to consider theme changes
Nov 20, 2024
6487faa
Merge branch 'master' into ng-17
Nov 20, 2024
ea60d5d
Update prettier
Nov 20, 2024
2fd3048
Add lint-staged as dev dependency
Nov 20, 2024
f7e9699
Migrate code to new @if/@for/@switch syntax
Nov 20, 2024
0734f40
Remove optional chain operator
Nov 20, 2024
e5f52e6
Improve if-/else-usage
Dec 3, 2024
3de081f
Clarity css vars changed ... add login padding
Dec 3, 2024
6a0f75f
Fix: Define login styles in sass
Dec 3, 2024
c3537b9
Improve markdown rendering
Dec 3, 2024
0679b42
Update angular-split version
Dec 3, 2024
d933bc5
Migrate ngx-dynamic-hooks to v3
Dec 3, 2024
a56d7df
Replace deprecated xterm packages
Dec 3, 2024
ccdd76b
remove unused Web Components polyfills and scripts
Dec 3, 2024
529bca4
update xterm imports
Dec 3, 2024
9e044c4
Update @auth0/angular-jwt
Dec 4, 2024
12db4f3
Update guacamole client
Dec 4, 2024
f2e05de
Update tslib
Dec 4, 2024
92d8c97
Update node to current lts version
Dec 6, 2024
3f8c0b8
run npm audit fix
Dec 6, 2024
9cbc95d
Load guacamole-common-js from self-maintained (and mirrored) npm esm …
Jan 21, 2025
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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ jobs:
uses: actions/checkout@master

- name: Install Node.js & NPM
uses: actions/setup-node@v3
uses: actions/setup-node@v4.1.0
with:
node-version: 16
node-version: '22.11.0'
cache: 'npm'

- name: Install dependencies
Expand Down
10 changes: 9 additions & 1 deletion .prettierrc.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
{
"singleQuote": true,
"trailingComma": "all"
"trailingComma": "all",
"overrides": [
{
"files": "*.html",
"options": {
"parser": "angular"
}
}
]
}
24 changes: 10 additions & 14 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,18 +26,14 @@
"src/custom.css"
],
"styles": [
"node_modules/xterm/css/xterm.css",
"node_modules/@xterm/xterm/css/xterm.css",
"src/styles.scss",
"src/dark-theme.css",
"node_modules/prismjs/themes/prism.css"
"node_modules/prismjs/themes/prism.css",
"node_modules/@cds/core/global.min.css",
"node_modules/@cds/core/styles/theme.dark.min.css",
"node_modules/@clr/ui/clr-ui.min.css"
],
"scripts": [
"node_modules/@webcomponents/webcomponentsjs/custom-elements-es5-adapter.js",
"node_modules/@webcomponents/webcomponentsjs/webcomponents-bundle.js",
"node_modules/xterm/lib/xterm.js",
"node_modules/marked/marked.min.js"
],
"allowedCommonJsDependencies": ["xterm"],
"scripts": [],
"vendorChunk": true,
"extractLicenses": false,
"buildOptimizer": false,
Expand Down Expand Up @@ -92,21 +88,21 @@
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"options": {
"browserTarget": "hobbyfarm-ui:build"
"buildTarget": "hobbyfarm-ui:build"
},
"configurations": {
"local": {
"browserTarget": "hobbyfarm-ui:build:local"
"buildTarget": "hobbyfarm-ui:build:local"
},
"production": {
"browserTarget": "hobbyfarm-ui:build:production"
"buildTarget": "hobbyfarm-ui:build:production"
}
}
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "hobbyfarm-ui:build"
"buildTarget": "hobbyfarm-ui:build"
}
},
"test": {
Expand Down
Loading