Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
25958cb
update typescript to 5.2
Blodir Nov 19, 2025
27515ff
angular update @17 progress
Blodir Nov 19, 2025
aa495d7
angular 17 update complete
Blodir Nov 20, 2025
f920f4e
ng 18 update progress
Blodir Nov 22, 2025
b05a6be
angular 18 update progress
Blodir Nov 22, 2025
bd92445
angular 18 update progress
Blodir Nov 23, 2025
f45c52d
fix imports for new build system
Blodir Nov 24, 2025
ed8541e
angular 18 update progress
Blodir Nov 25, 2025
33527b1
fix angular 18 dev build
Blodir Nov 27, 2025
6bc6f77
update ngx-translate
Blodir Nov 28, 2025
f15e784
fix broken translate json module imports
Blodir Nov 28, 2025
3a9489f
fix accessing undefined
Blodir Nov 28, 2025
e455d47
remove deprecated apollo config
Blodir Nov 28, 2025
c2eb693
delete unused stuff
Blodir Nov 28, 2025
376247e
update default node version
Blodir Nov 28, 2025
b37adea
all builds use ssr now
Blodir Nov 28, 2025
612e772
bump label-designer version
Blodir Nov 28, 2025
c530c8a
update label designer version number
Blodir Nov 28, 2025
45e1f06
migrate ng 19
Blodir Dec 1, 2025
cf0bd12
delete webstorage patch
Blodir Dec 1, 2025
f4343ce
fix type issue
Blodir Dec 1, 2025
8559a91
update label-designer to ng 19
Blodir Dec 1, 2025
af272fd
rxjs 6->7
Blodir Dec 3, 2025
aefdb25
angular 20 update
Blodir Dec 10, 2025
502f9c0
remove hydration config conflict
Blodir Dec 31, 2025
c61899c
angular 20->21 auto migration
Blodir Jan 2, 2026
2a462fd
update other deps to angular 21
Blodir Jan 2, 2026
58d6a69
remove unnecessary ngswitch
Blodir Jan 2, 2026
9eb92b7
finish migration to new angular control flow
Blodir Jan 2, 2026
c0fcf03
fix probable bug with nonexistent switch case
Blodir Jan 2, 2026
d1ca412
resolve issues with template syntax migration
Blodir Jan 6, 2026
7ac7f85
Merge branch 'development' into angular-update-52938475
Blodir Jan 7, 2026
b79cc71
bump node version
Blodir Jan 8, 2026
a1b02c7
update github actions node version
Blodir Feb 2, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
5 changes: 4 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ module.exports = {
"@angular-eslint/contextual-lifecycle": "error",
"@angular-eslint/directive-class-suffix": "error",
"@angular-eslint/no-conflicting-lifecycle": "error",
"@angular-eslint/no-host-metadata-property": "error",
"@angular-eslint/no-input-rename": "error",
"@angular-eslint/no-inputs-metadata-property": "error",
"@angular-eslint/no-output-native": "error",
Expand Down Expand Up @@ -268,6 +267,10 @@ module.exports = {
"leadingUnderscore": "allow",
"trailingUnderscore": "allow"
},
{
"selector": "import",
"format": null,
},
{
"selector": "typeLike",
"format": [
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Set up node
uses: actions/setup-node@v4
with:
node-version: 16.20.0
node-version: 20.19.6
cache: 'npm'
- run: npm install cross-env eslint @typescript-eslint/eslint-plugin @typescript-eslint/parser @angular-eslint/eslint-plugin @angular-eslint/eslint-plugin-template @angular-eslint/template-parser
- run: npm install cross-env eslint @typescript-eslint/eslint-plugin @typescript-eslint/parser @angular-eslint/eslint-plugin @angular-eslint/eslint-plugin-template @angular-eslint/template-parser
- run: npm run lint:all
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v16.20.2
v20.19.6
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
node {
nvm('v16.20.0') {
nvm('v20.19.6') {
stage('Prepare environment') {
cleanWs()
git branch: 'development', url: 'https://github.com/luomus/laji.git'
Expand Down
2 changes: 1 addition & 1 deletion JenkinsfileBeta
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
node {
nvm('v16.20.0') {
nvm('v20.19.6') {
stage('Prepare environment') {
cleanWs()
git branch: 'beta', url: 'https://github.com/luomus/laji.git'
Expand Down
2 changes: 1 addition & 1 deletion JenkinsfileProduction
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
node {
nvm('v16.20.0') {
nvm('v20.19.6') {
stage('Prepare environment') {
cleanWs()
git branch: 'master', url: 'https://github.com/luomus/laji.git'
Expand Down
Loading