monoidentity 0.0.1 → 0.0.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.
@@ -1,6 +1,6 @@
1
1
  <script lang="ts">
2
2
  import type { Snippet } from "svelte";
3
- import type { Scope } from "../../../src/lib.js";
3
+ import type { Scope } from "./utils.js";
4
4
  import { trackReady } from "./trackready.js";
5
5
 
6
6
  let { app, scopes, children }: { app: string; scopes: Scope[]; children: Snippet } = $props();
@@ -1,5 +1,5 @@
1
1
  import type { Snippet } from "svelte";
2
- import type { Scope } from "../../../src/lib.js";
2
+ import type { Scope } from "./utils.js";
3
3
  type $$ComponentProps = {
4
4
  app: string;
5
5
  scopes: Scope[];
package/dist/index.d.ts CHANGED
@@ -1 +1,3 @@
1
- export {};
1
+ export { default as Monoidentity } from "./Monoidentity.svelte";
2
+ export { getStorage } from "./storage.js";
3
+ export * from "./trackready.js";
package/dist/index.js CHANGED
@@ -1,2 +1,3 @@
1
- "use strict";
2
- // Reexport your entry components here
1
+ export { default as Monoidentity } from "./Monoidentity.svelte";
2
+ export { getStorage } from "./storage.js";
3
+ export * from "./trackready.js";
@@ -1,2 +1,2 @@
1
- import { type Scope } from "../../../src/lib.js";
1
+ import { type Scope } from "./utils.js";
2
2
  export declare const trackReady: (app: string, scopes: Scope[], callback: () => void) => void;
@@ -1,4 +1,4 @@
1
- import { rememberCallback } from "../../../src/lib.js";
1
+ import { rememberCallback } from "./utils.js";
2
2
  import { init as initLocal } from "./storage-private-local.js";
3
3
  import { setup } from "./storage.js";
4
4
  export const trackReady = (app, scopes, callback) => {
package/package.json CHANGED
@@ -1,6 +1,12 @@
1
1
  {
2
2
  "name": "monoidentity",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
+ "repository": "KTibow/monoidentity",
5
+ "author": {
6
+ "name": "KTibow"
7
+ },
8
+ "homepage": "https://github.com/KTibow/monoidentity",
9
+ "funding": "https://github.com/sponsors/KTibow",
4
10
  "files": [
5
11
  "dist",
6
12
  "!dist/**/*.test.*",