rune-lab 0.4.3 → 0.4.4
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/README.md +1 -1
- package/dist/RuneProvider.svelte +5 -3
- package/dist/mod.js +1 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<h1 align="center">
|
|
2
|
-
<img src="https://raw.githubusercontent.com/Yrrrrrf/rune-lab/main/
|
|
2
|
+
<img src="https://raw.githubusercontent.com/Yrrrrrf/rune-lab/main/static/img/rune.png" alt="Rune Lab Icon" width="128" height="128" descripti``on="Icon representing the Svelte Runes system">
|
|
3
3
|
<div align="center">Rune Lab</div>
|
|
4
4
|
</h1>
|
|
5
5
|
|
package/dist/RuneProvider.svelte
CHANGED
|
@@ -37,9 +37,11 @@
|
|
|
37
37
|
|
|
38
38
|
// 0. Create and provide the built-in AppStore
|
|
39
39
|
const appStore = createAppStore();
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
40
|
+
untrack(() => {
|
|
41
|
+
if (config.app) {
|
|
42
|
+
appStore.init(config.app);
|
|
43
|
+
}
|
|
44
|
+
});
|
|
43
45
|
setContext(RUNE_LAB_CONTEXT.app, appStore);
|
|
44
46
|
|
|
45
47
|
// 1. Register all plugins
|
package/dist/mod.js
CHANGED
|
@@ -4,5 +4,4 @@ export * from "./kernel/src/mod.js";
|
|
|
4
4
|
export * from "./runes/layout/src/mod.js";
|
|
5
5
|
export * from "./runes/palettes/src/mod.js";
|
|
6
6
|
export * from "./runes/plugins/money/src/mod.js";
|
|
7
|
-
|
|
8
|
-
export const version = () => pkgConfig.version;
|
|
7
|
+
export const version = () => "0.4.4";
|
package/package.json
CHANGED