@livestore/utils 0.3.2-dev.1 → 0.3.2-dev.6

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.
@@ -5,7 +5,7 @@ import type { UnknownException } from 'effect/Cause'
5
5
  import { log } from 'effect/Console'
6
6
  import type { LazyArg } from 'effect/Function'
7
7
 
8
- import { isPromise } from '../index.ts'
8
+ import { isPromise } from '../mod.ts'
9
9
  import { UnknownError } from './Error.ts'
10
10
 
11
11
  export * from 'effect/Effect'
@@ -4,7 +4,7 @@ import { Effect, Hash, ParseResult, Schema } from 'effect'
4
4
  import type { ParseError } from 'effect/ParseResult'
5
5
  import type { ParseOptions } from 'effect/SchemaAST'
6
6
 
7
- import { shouldNeverHappen } from '../../index.ts'
7
+ import { shouldNeverHappen } from '../../mod.ts'
8
8
 
9
9
  export * from 'effect/Schema'
10
10
  export * from './debug-diff.ts'
package/src/global.ts CHANGED
@@ -1,5 +1,9 @@
1
1
  declare global {
2
2
  export type TODO<_Reason extends string = 'unknown'> = any
3
+
4
+ interface ImportMeta {
5
+ readonly main: boolean
6
+ }
3
7
  }
4
8
 
5
9
  export {}
File without changes