@lobb-js/lobb-ext-storage 0.5.8 → 0.5.9
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 +6 -0
- package/package.json +2 -2
- package/vite.config.ts +0 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
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.9 - 2026-03-13
|
|
6
|
+
#### Bug Fixes
|
|
7
|
+
- chaning $lib to relative path - (c6d9e8f) - malik ben
|
|
8
|
+
|
|
9
|
+
- - -
|
|
10
|
+
|
|
5
11
|
## storage-ext-studio@0.5.8 - 2026-03-03
|
|
6
12
|
#### Bug Fixes
|
|
7
13
|
- (**storage-ext**) fix tests to work from project root and fix foreignKeyObject persistence on file upload - (4b5bdd8) - malik ben
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lobb-js/lobb-ext-storage",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.9",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"browser-fs-access": "^0.35.0"
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
|
-
"@lobb-js/studio": "0.
|
|
22
|
+
"@lobb-js/studio": "0.6.0",
|
|
23
23
|
"@lucide/svelte": "^0.563.1",
|
|
24
24
|
"@sveltejs/vite-plugin-svelte": "6.2.1",
|
|
25
25
|
"@tailwindcss/vite": "^4.1.18",
|
package/vite.config.ts
CHANGED
|
@@ -1,13 +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({
|
|
8
7
|
base: '/studio',
|
|
9
8
|
plugins: [
|
|
10
|
-
...lobbStudioPlugins(),
|
|
11
9
|
tailwindcss(),
|
|
12
10
|
svelte(),
|
|
13
11
|
],
|