universe-code 0.0.48 → 0.0.49

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,11 +1,13 @@
1
1
  import { getIdbStore } from './indexdb/store/idbStore.js';
2
2
  import { useIdbStore } from './indexdb/hooks/idbHook.js';
3
+ import { configureIdb } from "./indexdb/store/config.js";
3
4
 
4
5
  // Export everything as a unified object or individual pieces
5
- export { getIdbStore, useIdbStore };
6
+ export { configureIdb, getIdbStore, useIdbStore };
6
7
 
7
8
  // Default export for easy usage
8
9
  export default {
10
+ configureIdb,
9
11
  getIdbStore,
10
12
  useIdbStore,
11
13
  };
@@ -36,6 +36,4 @@ export const getIdbStore = async () => {
36
36
  }
37
37
 
38
38
  return store;
39
- };
40
-
41
- export { configureIdb } from "./config";
39
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "universe-code",
3
- "version": "0.0.48",
3
+ "version": "0.0.49",
4
4
  "description": "Universal utility functions for all JS frameworks",
5
5
  "license": "ISC",
6
6
  "type": "module",