@lobb-js/lobb-ext-auth 0.1.65 → 0.1.67
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 +18 -0
- package/package.json +2 -4
- package/vite.config.ts +1 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,24 @@
|
|
|
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.67 - 2026-03-13
|
|
6
|
+
#### Bug Fixes
|
|
7
|
+
- chaning $lib to relative path - (c6d9e8f) - malik ben
|
|
8
|
+
#### Miscellaneous Chores
|
|
9
|
+
- (**version**) 0.22.0 - (6510e32) - Cocogitto Bot
|
|
10
|
+
- (**version**) 0.21.0 - (c973aa9) - Cocogitto Bot
|
|
11
|
+
|
|
12
|
+
- - -
|
|
13
|
+
|
|
14
|
+
## auth-ext-studio@0.1.66 - 2026-03-01
|
|
15
|
+
#### Bug Fixes
|
|
16
|
+
- (**studio**) prevent @lobb-js/studio version shadowing in extensions - (cd674b9) - malik ben
|
|
17
|
+
#### Miscellaneous Chores
|
|
18
|
+
- (**version**) 0.15.0 - (0c2c345) - Cocogitto Bot
|
|
19
|
+
- fixing the /studio base issue - (de6686f) - Malik Najjar
|
|
20
|
+
|
|
21
|
+
- - -
|
|
22
|
+
|
|
5
23
|
## auth-ext-studio@0.1.65 - 2026-02-22
|
|
6
24
|
#### Bug Fixes
|
|
7
25
|
- adding a studio prefix for the studio app - (6607b5a) - malik ben
|
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.67",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": "./src/index.ts"
|
|
@@ -11,10 +11,8 @@
|
|
|
11
11
|
"preview": "vite preview",
|
|
12
12
|
"check": "svelte-check --tsconfig ./tsconfig.app.json && tsc -p tsconfig.node.json"
|
|
13
13
|
},
|
|
14
|
-
"dependencies": {
|
|
15
|
-
"@lobb-js/studio": "0.3.2"
|
|
16
|
-
},
|
|
17
14
|
"devDependencies": {
|
|
15
|
+
"@lobb-js/studio": "0.6.0",
|
|
18
16
|
"@lucide/svelte": "^0.563.1",
|
|
19
17
|
"@sveltejs/vite-plugin-svelte": "6.2.1",
|
|
20
18
|
"@tailwindcss/vite": "^4.1.18",
|
package/vite.config.ts
CHANGED
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
import { defineConfig } from "vite";
|
|
2
2
|
import { svelte } from "@sveltejs/vite-plugin-svelte";
|
|
3
|
-
import { lobbStudioPlugins } from "@lobb-js/studio/vite-plugins";
|
|
4
3
|
import tailwindcss from "@tailwindcss/vite";
|
|
5
4
|
|
|
6
5
|
// https://vite.dev/config/
|
|
7
6
|
export default defineConfig({
|
|
7
|
+
base: '/studio',
|
|
8
8
|
plugins: [
|
|
9
|
-
...lobbStudioPlugins(),
|
|
10
9
|
tailwindcss(),
|
|
11
10
|
svelte(),
|
|
12
11
|
],
|