@lobb-js/lobb-ext-storage 0.5.6 → 0.5.8

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 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
+ ## storage-ext-studio@0.5.8 - 2026-03-03
6
+ #### Bug Fixes
7
+ - (**storage-ext**) fix tests to work from project root and fix foreignKeyObject persistence on file upload - (4b5bdd8) - 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
+ ## storage-ext-studio@0.5.7 - 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
  ## storage-ext-studio@0.5.6 - 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-storage",
3
- "version": "0.5.6",
3
+ "version": "0.5.8",
4
4
  "type": "module",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -15,11 +15,11 @@
15
15
  "check": "svelte-check --tsconfig ./tsconfig.app.json && tsc -p tsconfig.node.json"
16
16
  },
17
17
  "dependencies": {
18
- "@lobb-js/studio": "0.3.2",
19
18
  "path-browserify": "^1.0.1",
20
19
  "browser-fs-access": "^0.35.0"
21
20
  },
22
21
  "devDependencies": {
22
+ "@lobb-js/studio": "0.5.0",
23
23
  "@lucide/svelte": "^0.563.1",
24
24
  "@sveltejs/vite-plugin-svelte": "6.2.1",
25
25
  "@tailwindcss/vite": "^4.1.18",
@@ -1,5 +1,4 @@
1
1
  <script lang="ts">
2
- import { FolderX } from "lucide-svelte";
3
2
  import type { ExtensionProps } from "@lobb-js/studio";
4
3
  import FileExplorer from "./fileExplorer.svelte";
5
4
 
package/vite.config.ts CHANGED
@@ -5,6 +5,7 @@ import tailwindcss from "@tailwindcss/vite";
5
5
 
6
6
  // https://vite.dev/config/
7
7
  export default defineConfig({
8
+ base: '/studio',
8
9
  plugins: [
9
10
  ...lobbStudioPlugins(),
10
11
  tailwindcss(),