Skip to content

Commit

Permalink
Relax version of remix/node (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulAsjes authored Jul 16, 2024
1 parent 015cf30 commit 0ff7cb9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@workos-inc/authkit-remix",
"version": "0.2.0",
"version": "0.2.1",
"description": "Authentication and session helpers for using WorkOS & AuthKit with Remix",
"sideEffects": false,
"type": "commonjs",
Expand All @@ -26,7 +26,7 @@
"jose": "^5.2.3"
},
"peerDependencies": {
"@remix-run/node": "^2.7.2",
"@remix-run/node": "^2.4.1",
"react": "^18.2.0"
},
"devDependencies": {
Expand Down
4 changes: 3 additions & 1 deletion src/workos.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
import { WorkOS } from '@workos-inc/node';
import { WORKOS_API_HOSTNAME, WORKOS_API_HTTPS, WORKOS_API_KEY, WORKOS_API_PORT } from './env-variables.js';

const VERSION = '0.2.1';

const options = {
apiHostname: WORKOS_API_HOSTNAME,
https: WORKOS_API_HTTPS ? WORKOS_API_HTTPS === 'true' : true,
port: WORKOS_API_PORT ? parseInt(WORKOS_API_PORT) : undefined,
appInfo: {
name: 'authkit-remix',
version: '0.2.0',
version: VERSION,
},
};

Expand Down

0 comments on commit 0ff7cb9

Please sign in to comment.