Skip to content

Commit

Permalink
Exclude tests from build (#159)
Browse files Browse the repository at this point in the history
* Exclude tests from the build

* Bump version
  • Loading branch information
PaulAsjes authored Jan 2, 2025
1 parent a9d77b8 commit 0e7a20e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@workos-inc/authkit-nextjs",
"version": "0.17.0",
"version": "0.17.1",
"description": "Authentication and session helpers for using WorkOS & AuthKit with Next.js",
"sideEffects": false,
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion src/workos.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { WorkOS } from '@workos-inc/node';
import { WORKOS_API_HOSTNAME, WORKOS_API_KEY, WORKOS_API_HTTPS, WORKOS_API_PORT } from './env-variables.js';

export const VERSION = '0.17.0';
export const VERSION = '0.17.1';

const options = {
apiHostname: WORKOS_API_HOSTNAME,
Expand Down
6 changes: 3 additions & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@
"alwaysStrict": true,
"skipLibCheck": true,
"outDir": "./dist/esm",
"declarationDir": "./dist/esm/types",
"module": "ES2020",
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"declarationDir": "./dist/types"
"allowSyntheticDefaultImports": true
},
"exclude": ["**/*.spec.ts", "**/*.spec.tsx", "jest.config.ts", "jest.setup.ts"]
"exclude": ["**/*.spec.ts", "**/*.spec.tsx", "jest.config.ts", "jest.setup.ts", "/dist/**/*", "__tests__/**/*"]
}

0 comments on commit 0e7a20e

Please sign in to comment.