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 CHANGED
@@ -1,5 +1,5 @@
1
1
  <h1 align="center">
2
- <img src="https://raw.githubusercontent.com/Yrrrrrf/rune-lab/main/src/sdk/ui/static/img/rune.png" alt="Rune Lab Icon" width="128" height="128" descripti``on="Icon representing the Svelte Runes system">
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
 
@@ -37,9 +37,11 @@
37
37
 
38
38
  // 0. Create and provide the built-in AppStore
39
39
  const appStore = createAppStore();
40
- if (config.app) {
41
- appStore.init(config.app);
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
- import pkgConfig from "../package.json" with { type: "json" };
8
- export const version = () => pkgConfig.version;
7
+ export const version = () => "0.4.4";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rune-lab",
3
- "version": "0.4.3",
3
+ "version": "0.4.4",
4
4
  "description": "Modern toolkit for Svelte 5 Runes applications.",
5
5
  "type": "module",
6
6
  "readme": "./README.md",
@@ -59,4 +59,4 @@
59
59
  "dist/**",
60
60
  "**/*.test.ts"
61
61
  ]
62
- }
62
+ }