@lobb-js/lobb-ext-auth 0.1.60 → 0.1.64
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/CHANGELOG.md +17 -0
- package/package.json +2 -2
- package/src/index.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,23 @@
|
|
|
2
2
|
All notable changes to this project will be documented in this file. See [conventional commits](https://www.conventionalcommits.org/) for commit guidelines.
|
|
3
3
|
|
|
4
4
|
- - -
|
|
5
|
+
## auth-ext-studio@0.1.64 - 2026-02-21
|
|
6
|
+
#### Bug Fixes
|
|
7
|
+
- using default export instead of named export for extensions - (37dd485) - malik ben
|
|
8
|
+
#### Miscellaneous Chores
|
|
9
|
+
- (**version**) 0.14.0 - (7d2eb87) - Cocogitto Bot
|
|
10
|
+
- (**version**) 0.12.1 - (c548105) - Cocogitto Bot
|
|
11
|
+
|
|
12
|
+
- - -
|
|
13
|
+
|
|
14
|
+
## auth-ext-studio@0.1.63 - 2026-02-17
|
|
15
|
+
#### Bug Fixes
|
|
16
|
+
- fixing the standalone issue - (1a70a51) - Malik Najjar
|
|
17
|
+
#### Miscellaneous Chores
|
|
18
|
+
- (**version**) 0.10.9 - (19ac765) - Cocogitto Bot
|
|
19
|
+
|
|
20
|
+
- - -
|
|
21
|
+
|
|
5
22
|
## auth-ext-studio@0.1.60 - 2026-02-17
|
|
6
23
|
#### Bug Fixes
|
|
7
24
|
- removing a comment - (68c182d) - Malik Najjar
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lobb-js/lobb-ext-auth",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.64",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": "./src/index.ts"
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"check": "svelte-check --tsconfig ./tsconfig.app.json && tsc -p tsconfig.node.json"
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@lobb-js/studio": "0.
|
|
15
|
+
"@lobb-js/studio": "0.3.0"
|
|
16
16
|
},
|
|
17
17
|
"devDependencies": {
|
|
18
18
|
"@lucide/svelte": "^0.563.1",
|
package/src/index.ts
CHANGED
|
@@ -6,7 +6,7 @@ import UserSettings from "./lib/components/pages/userSettings/index.svelte";
|
|
|
6
6
|
import Settings from "./lib/components/pages/settings/index.svelte";
|
|
7
7
|
|
|
8
8
|
// TODO we should export the extension object directly without a function at all. because we dont set configuration in here
|
|
9
|
-
export function extension(utils: ExtensionUtils): Extension {
|
|
9
|
+
export default function extension(utils: ExtensionUtils): Extension {
|
|
10
10
|
return {
|
|
11
11
|
name: "auth",
|
|
12
12
|
onStartup: onStartup,
|