File tree 9 files changed +1601
-1709
lines changed
9 files changed +1601
-1709
lines changed Original file line number Diff line number Diff line change 25
25
- uses : actions/checkout@v4
26
26
- uses : actions/setup-node@v4
27
27
with :
28
- node-version : " 20 "
28
+ node-version : " 22 "
29
29
- uses : bahmutov/npm-install@v1
30
30
- name : Build back
31
31
run : cd api && yarn build
80
80
- uses : actions/checkout@v4
81
81
- uses : actions/setup-node@v4
82
82
with :
83
- node-version : " 20 "
83
+ node-version : " 22 "
84
84
- uses : bahmutov/npm-install@v1
85
85
- run : cd web
86
86
- name : Build
Original file line number Diff line number Diff line change 1
- 20
1
+ 22
Original file line number Diff line number Diff line change 1
- FROM node:20 -alpine as build
1
+ FROM node:22 -alpine as build
2
2
RUN apk add --no-cache \
3
3
git \
4
4
openssh-client \
Original file line number Diff line number Diff line change 1
1
# build step
2
- FROM node:20 -alpine as build
2
+ FROM node:22 -alpine as build
3
3
WORKDIR /app
4
4
COPY package.json yarn.lock ./
5
5
COPY api/package.json api/
Original file line number Diff line number Diff line change 45
45
"@types/express" : " 4.17.21" ,
46
46
"@types/jsdom" : " ^21.1.7" ,
47
47
"@types/memoizee" : " ^0.4.7" ,
48
- "@types/node" : " ^18.19.64 " ,
48
+ "@types/node" : " ^22.0.0 " ,
49
49
"@types/node-fetch" : " ^2.5.7" ,
50
50
"@types/semver" : " ^7.5.3" ,
51
51
"@types/ungap__structured-clone" : " ^0.3.0" ,
72
72
"vitest" : " ^1.2.2"
73
73
},
74
74
"dependencies" : {
75
+ "@commitlint/cli" : " ^19.8.0" ,
76
+ "@commitlint/config-conventional" : " ^19.8.0" ,
75
77
"@octokit/graphql" : " ^7.0.2" ,
76
78
"@trpc/server" : " ^10.18.0" ,
77
79
"@types/pg" : " ^8.11.6" ,
80
82
"jwt-decode" : " ^3.1.2" ,
81
83
"kysely" : " ^0.27.4" ,
82
84
"kysely-ctl" : " ^0.12.0" ,
85
+ "lefthook" : " ^1.10.10" ,
83
86
"oidc-spa" : " ^6.1.9" ,
84
87
"pg" : " ^8.11.5" ,
85
88
"semver" : " ^7.5.4" ,
Original file line number Diff line number Diff line change 20
20
"turbo" : " ^1.12.5"
21
21
},
22
22
"engines" : {
23
- "node" : " ^20 "
23
+ "node" : " ^22 "
24
24
},
25
25
"workspaces" : [
26
26
" api" ,
27
27
" web"
28
- ]
28
+ ],
29
+ "dependencies" : {}
29
30
}
Original file line number Diff line number Diff line change 38
38
"i18next-http-backend" : " ^3.0.2" ,
39
39
"i18nifty" : " ^3.2.2" ,
40
40
"memoizee" : " ^0.4.14" ,
41
- "oidc-spa" : " ^6.1.9 " ,
41
+ "oidc-spa" : " ^6.14.0 " ,
42
42
"path" : " ^0.12.7" ,
43
43
"powerhooks" : " ^1.0.12" ,
44
44
"react" : " ^18.2.0" ,
66
66
"@storybook/react" : " ^6.5.10" ,
67
67
"@types/flexsearch" : " ^0.7.3" ,
68
68
"@types/memoizee" : " ^0.4.4" ,
69
- "@types/node" : " ^18.19.64 " ,
69
+ "@types/node" : " ^22.0.0 " ,
70
70
"@types/react" : " ^18.0.18" ,
71
71
"@types/react-dom" : " ^18.0.6" ,
72
72
"@typescript-eslint/eslint-plugin" : " ^5.62.0" ,
Original file line number Diff line number Diff line change @@ -4,7 +4,8 @@ import { MuiDsfrThemeProvider } from "@codegouvfr/react-dsfr/mui";
4
4
import { startReactDsfr } from "@codegouvfr/react-dsfr/spa" ;
5
5
import { assert } from "tsafe/assert" ;
6
6
import "./ui/i18n/i18next" ;
7
- import { handleOidcCallback } from "oidc-spa/oidc/handleOidcCallback" ;
7
+ import { handleOidcCallback } from "oidc-spa/core/handleOidcCallback" ;
8
+
8
9
handleOidcCallback ( ) ;
9
10
10
11
startReactDsfr ( { defaultColorScheme : "system" } ) ;
Load Diff Large diffs are not rendered by default.
You can’t perform that action at this time.
0 commit comments