Skip to content

Commit 0ff7cb9

Browse files
author
Paul Asjes
authored
Relax version of remix/node (#12)
1 parent 015cf30 commit 0ff7cb9

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@workos-inc/authkit-remix",
3-
"version": "0.2.0",
3+
"version": "0.2.1",
44
"description": "Authentication and session helpers for using WorkOS & AuthKit with Remix",
55
"sideEffects": false,
66
"type": "commonjs",
@@ -26,7 +26,7 @@
2626
"jose": "^5.2.3"
2727
},
2828
"peerDependencies": {
29-
"@remix-run/node": "^2.7.2",
29+
"@remix-run/node": "^2.4.1",
3030
"react": "^18.2.0"
3131
},
3232
"devDependencies": {

src/workos.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
import { WorkOS } from '@workos-inc/node';
22
import { WORKOS_API_HOSTNAME, WORKOS_API_HTTPS, WORKOS_API_KEY, WORKOS_API_PORT } from './env-variables.js';
33

4+
const VERSION = '0.2.1';
5+
46
const options = {
57
apiHostname: WORKOS_API_HOSTNAME,
68
https: WORKOS_API_HTTPS ? WORKOS_API_HTTPS === 'true' : true,
79
port: WORKOS_API_PORT ? parseInt(WORKOS_API_PORT) : undefined,
810
appInfo: {
911
name: 'authkit-remix',
10-
version: '0.2.0',
12+
version: VERSION,
1113
},
1214
};
1315

0 commit comments

Comments
 (0)