@lobb-js/studio 0.9.0 → 0.9.2
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.
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
loadExtensions,
|
|
15
15
|
} from "../extensions/extensionUtils";
|
|
16
16
|
import extensionMap from 'virtual:lobb-studio-extensions';
|
|
17
|
-
import
|
|
17
|
+
import { STUDIO_VERSION } from "../version.ts";
|
|
18
18
|
import { mediaQueries } from "../utils";
|
|
19
19
|
import Home from "./routes/home.svelte";
|
|
20
20
|
import DataModel from "./routes/data_model/dataModel.svelte";
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
extensions: {},
|
|
34
34
|
meta: null,
|
|
35
35
|
currentUrl: new URL(window.location.href),
|
|
36
|
-
studioVersion:
|
|
36
|
+
studioVersion: STUDIO_VERSION,
|
|
37
37
|
});
|
|
38
38
|
|
|
39
39
|
const lobb = createLobb(lobbUrl ?? "");
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const STUDIO_VERSION: string;
|
package/dist/version.js
ADDED
package/package.json
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
loadExtensions,
|
|
15
15
|
} from "../extensions/extensionUtils";
|
|
16
16
|
import extensionMap from 'virtual:lobb-studio-extensions';
|
|
17
|
-
import
|
|
17
|
+
import { STUDIO_VERSION } from "../version.ts";
|
|
18
18
|
import { mediaQueries } from "../utils";
|
|
19
19
|
import Home from "./routes/home.svelte";
|
|
20
20
|
import DataModel from "./routes/data_model/dataModel.svelte";
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
extensions: {},
|
|
34
34
|
meta: null,
|
|
35
35
|
currentUrl: new URL(window.location.href),
|
|
36
|
-
studioVersion:
|
|
36
|
+
studioVersion: STUDIO_VERSION,
|
|
37
37
|
});
|
|
38
38
|
|
|
39
39
|
const lobb = createLobb(lobbUrl ?? "");
|