@theholocron/holocron-plugin-clerk 3.28.0 → 3.29.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -0
- package/package.json +9 -9
package/README.md
CHANGED
|
@@ -18,6 +18,8 @@ Token resolution order:
|
|
|
18
18
|
1. `--token <KEY>` flag on the holocron invocation
|
|
19
19
|
2. `HOLOCRON_CLERK_SECRET_KEY` env var
|
|
20
20
|
3. `CLERK_SECRET_KEY` env var (Clerk's own default; what their docs reference)
|
|
21
|
+
4. Keyring `clerk.<org>` — tried first when an org is active via `--org`, `HOLOCRON_ORG`, or `org` in `holocron.config.ts`
|
|
22
|
+
5. Keyring `clerk` — unnamespaced fallback; set via `holocron auth set clerk <key>`
|
|
21
23
|
|
|
22
24
|
> **Why not the `clerk` CLI?** Rando's adapter shells out to `npx clerk@latest
|
|
23
25
|
api …`, but the `clerk` CLI just wraps the same REST API holocron talks to.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@theholocron/holocron-plugin-clerk",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.29.0",
|
|
4
4
|
"description": "Holocron plugin for Clerk. Implements the auth capability against Clerk's Backend REST API.",
|
|
5
5
|
"homepage": "https://github.com/theholocron/holocron/tree/main/packages/holocron-plugin-clerk#readme",
|
|
6
6
|
"bugs": "https://github.com/theholocron/holocron/issues",
|
|
@@ -21,15 +21,15 @@
|
|
|
21
21
|
}
|
|
22
22
|
},
|
|
23
23
|
"peerDependencies": {
|
|
24
|
-
"@theholocron/clerk-client": "^1.
|
|
25
|
-
"@theholocron/cli": "3.
|
|
24
|
+
"@theholocron/clerk-client": "^1.9.0",
|
|
25
|
+
"@theholocron/cli": "3.29.0"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
|
-
"@theholocron/clerk-client": "^1.
|
|
29
|
-
"@theholocron/eslint-config": "^7.
|
|
30
|
-
"@theholocron/tsconfig": "^7.
|
|
31
|
-
"@theholocron/tsdown-config": "^7.
|
|
32
|
-
"@theholocron/vitest-config": "^7.
|
|
28
|
+
"@theholocron/clerk-client": "^1.9.0",
|
|
29
|
+
"@theholocron/eslint-config": "^7.20.0",
|
|
30
|
+
"@theholocron/tsconfig": "^7.20.0",
|
|
31
|
+
"@theholocron/tsdown-config": "^7.20.0",
|
|
32
|
+
"@theholocron/vitest-config": "^7.20.0",
|
|
33
33
|
"@types/node": "^26",
|
|
34
34
|
"@vitest/coverage-v8": "^4.1.10",
|
|
35
35
|
"@vitest/eslint-plugin": "^1.6.27",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"tsx": "4.22.4",
|
|
41
41
|
"typescript": "^5.9.3",
|
|
42
42
|
"vitest": "^4.1.10",
|
|
43
|
-
"@theholocron/cli": "3.
|
|
43
|
+
"@theholocron/cli": "3.29.0"
|
|
44
44
|
},
|
|
45
45
|
"publishConfig": {
|
|
46
46
|
"access": "public"
|