@ubean/auth 0.2.1 → 0.3.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/dist/core.js +1 -1
- package/dist/vite.js +1 -1
- package/package.json +2 -2
package/dist/core.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { AsyncLocalStorage } from "node:async_hooks";
|
|
2
2
|
import { defu } from "defu";
|
|
3
|
-
import { getLogger } from "@ubean/logger";
|
|
3
|
+
import { getLogger } from "@ubean/shared/logger";
|
|
4
4
|
//#region src/core.ts
|
|
5
5
|
const logger = getLogger("auth");
|
|
6
6
|
const AUTH_CONTEXT_SYMBOL = Symbol.for("ubean.authContext.v1");
|
package/dist/vite.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { resolveAuthOptions } from "./core.js";
|
|
2
|
-
import { getLogger } from "@ubean/logger";
|
|
2
|
+
import { getLogger } from "@ubean/shared/logger";
|
|
3
3
|
//#region src/vite.ts
|
|
4
4
|
const VIRTUAL_AUTH_CLIENT_ID = "virtual:ubean-auth/client";
|
|
5
5
|
const RESOLVED_VIRTUAL_AUTH_CLIENT_ID = `\0${VIRTUAL_AUTH_CLIENT_ID}`;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ubean/auth",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "Better Auth integration for ubean framework",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist"
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"better-auth": "^1.7.1",
|
|
32
32
|
"defu": "6.1.7",
|
|
33
|
-
"@ubean/
|
|
33
|
+
"@ubean/shared": "0.3.0"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
36
|
"@types/node": "^26.2.0",
|