@theholocron/holocron-plugin-clerk 2.0.0-alpha.34 → 2.0.0-alpha.36
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 +7 -3
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -5,8 +5,10 @@ against [Clerk's Backend REST API](https://clerk.com/docs/reference/backend-api)
|
|
|
5
5
|
|
|
6
6
|
## Install
|
|
7
7
|
|
|
8
|
+
<!-- prettier-ignore -->
|
|
8
9
|
```bash
|
|
9
10
|
pnpm add -D @theholocron/holocron-plugin-clerk@alpha
|
|
11
|
+
|
|
10
12
|
```
|
|
11
13
|
|
|
12
14
|
## Auth
|
|
@@ -24,12 +26,14 @@ api …`, but the `clerk` CLI just wraps the same REST API holocron talks to.
|
|
|
24
26
|
|
|
25
27
|
## Config
|
|
26
28
|
|
|
29
|
+
<!-- prettier-ignore -->
|
|
27
30
|
```jsonc
|
|
28
31
|
{
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
+
"providers": {
|
|
33
|
+
"auth": "clerk",
|
|
34
|
+
},
|
|
32
35
|
}
|
|
36
|
+
|
|
33
37
|
```
|
|
34
38
|
|
|
35
39
|
No plugin-level options today. Per-instance scoping (Development vs.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@theholocron/holocron-plugin-clerk",
|
|
3
|
-
"version": "2.0.0-alpha.
|
|
3
|
+
"version": "2.0.0-alpha.36",
|
|
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,7 +21,7 @@
|
|
|
21
21
|
}
|
|
22
22
|
},
|
|
23
23
|
"peerDependencies": {
|
|
24
|
-
"@theholocron/cli": "2.0.0-alpha.
|
|
24
|
+
"@theholocron/cli": "2.0.0-alpha.36"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"@types/node": "^26",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"tsx": "^4.22.4",
|
|
38
38
|
"typescript": "^5.9.3",
|
|
39
39
|
"vitest": "^4.1.10",
|
|
40
|
-
"@theholocron/cli": "2.0.0-alpha.
|
|
40
|
+
"@theholocron/cli": "2.0.0-alpha.36"
|
|
41
41
|
},
|
|
42
42
|
"publishConfig": {
|
|
43
43
|
"access": "public"
|