Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@ jobs:
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2

- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
with:
node-version: 24

- uses: oven-sh/setup-bun@0c5077e51419868618aeaa5fe8019c62421857d6 # v2.2.0

- run: bun install --frozen-lockfile
Expand All @@ -45,7 +49,7 @@ jobs:
with:
directory: ./packages
flags: unittests
fail_ci_if_error: true
fail_ci_if_error: false
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

Expand Down
2 changes: 1 addition & 1 deletion packages/firestore/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"test": "vitest run --passWithNoTests",
"test:watch": "vitest",
"check-types": "tsc --noEmit",
"lint": "eslint .",
Expand Down
72 changes: 36 additions & 36 deletions packages/waitlist/package.json
Original file line number Diff line number Diff line change
@@ -1,27 +1,28 @@
{
"name": "@please-auth/waitlist",
"version": "0.1.0",
"type": "module",
"version": "0.1.0",
"description": "Waitlist / early-access plugin for Better Auth. Intercepts all registration paths and gates sign-ups behind an invite-based waitlist.",
"author": "Minsu Lee",
"license": "MIT",
"main": "dist/index.mjs",
"module": "dist/index.mjs",
"types": "dist/index.d.mts",
"publishConfig": {
"access": "public"
"homepage": "https://github.com/chatbot-pf/please-auth#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/chatbot-pf/please-auth.git",
"directory": "packages/waitlist"
},
"scripts": {
"test": "vitest",
"coverage": "vitest run --coverage --coverage.provider=istanbul",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"lint:package": "publint run --strict",
"lint:types": "attw --profile esm-only --pack .",
"build": "tsdown",
"dev": "tsdown --watch",
"typecheck": "tsc --noEmit"
"bugs": {
"url": "https://github.com/chatbot-pf/please-auth/issues"
},
"keywords": [
"better-auth",
"auth",
"waitlist",
"early-access",
"invite",
"plugin",
"typescript"
],
"exports": {
".": {
"dev-source": "./src/index.ts",
Expand All @@ -34,33 +35,29 @@
"default": "./dist/client.mjs"
}
},
"main": "dist/index.mjs",
"module": "dist/index.mjs",
"types": "dist/index.d.mts",
"publishConfig": {
"access": "public"
},
"typesVersions": {
"*": {
"*": ["./dist/index.d.mts"],
"client": ["./dist/client.d.mts"]
}
},
"files": ["dist"],
"keywords": [
"better-auth",
"auth",
"waitlist",
"early-access",
"invite",
"plugin",
"typescript"
],
"repository": {
"type": "git",
"url": "git+https://github.com/chatbot-pf/please-auth.git",
"directory": "packages/waitlist"
},
"homepage": "https://github.com/chatbot-pf/please-auth#readme",
"bugs": {
"url": "https://github.com/chatbot-pf/please-auth/issues"
},
"dependencies": {
"zod": "^4.3.5"
"scripts": {
"test": "vitest",
"coverage": "vitest run --coverage --coverage.provider=istanbul",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"lint:package": "publint run --strict",
"lint:types": "attw --profile esm-only --pack .",
"build": "tsdown",
"dev": "tsdown --watch",
"typecheck": "tsc --noEmit"
},
"peerDependencies": {
"@better-auth/core": "^1.0.0",
Expand All @@ -73,6 +70,9 @@
"optional": true
}
},
"dependencies": {
"zod": "^4.3.5"
},
"devDependencies": {
"@better-auth/core": "1.5.4",
"@better-fetch/fetch": "1.1.21",
Expand Down
Loading
Loading