Skip to content

Commit 715c02b

Browse files
authored
feat: logout return_to at mfa (#264)
* feat: logout return_to at mfa * style: format * chore: bump to @ory/client v1.1.39-alhpa.0 * chore: bump @ory/integrations * chore: use node 18 in workflow test * chore: use legacy-peer-dependencies * refactor: use try catch instead
1 parent a96574d commit 715c02b

File tree

7 files changed

+12384
-6740
lines changed

7 files changed

+12384
-6740
lines changed

.circleci/config.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
- restore_cache:
1010
keys:
1111
- kratos-selfservice-ui-node-{{ checksum "package-lock.json" }}
12-
- run: npm ci
12+
- run: npm ci --legacy-peer-deps
1313
- save_cache:
1414
paths:
1515
- node_modules
@@ -25,7 +25,7 @@ jobs:
2525
- restore_cache:
2626
keys:
2727
- kratos-selfservice-ui-node-{{ checksum "package-lock.json" }}
28-
- run: npm ci
28+
- run: npm ci --legacy-peer-deps
2929
- save_cache:
3030
paths:
3131
- node_modules

.github/workflows/test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- uses: actions/checkout@v3
1414
- uses: actions/setup-node@v3
1515
with:
16-
node-version: "16"
17-
- run: npm ci
16+
node-version: "18"
17+
- run: npm ci --legacy-peer-deps
1818
- run: npm run test
1919
- run: npm run build

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ build-sdk:
2020
--git-host github.com \
2121
-c ./contrib/sdk/typescript.yml
2222
(cd ./contrib/sdk/generated; npm i; npm run build)
23-
rm -rf node_modules/@ory/kratos-client/*
23+
rm -rf node_modules/@ory/client/*
2424
cp -r ./contrib/sdk/generated/* node_modules/@ory/client
2525

2626
.PHONY: publish-sdk
@@ -56,5 +56,5 @@ licenses: .bin/licenses node_modules # checks open-source licenses
5656
touch .bin/ory
5757

5858
node_modules: package-lock.json
59-
npm ci
59+
npm ci --legacy-peer-deps
6060
touch node_modules

0 commit comments

Comments
 (0)