Skip to content

Commit

Permalink
fix(mizu): don't use export name to allow graph resolution
Browse files Browse the repository at this point in the history
  • Loading branch information
lowlighter committed Oct 26, 2024
1 parent ea6c0b2 commit d778ec1
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion @mizu/mizu/core/testing/filter.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Imports
import type { Arg, Directive, Nullable, Renderer } from "@mizu/mizu/core/engine"
import type { Arg, Directive, Nullable, Renderer } from "../engine/mod.ts"
import { format } from "./format.ts"

/**
Expand Down
6 changes: 3 additions & 3 deletions @mizu/mizu/core/testing/test.ts
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
// Imports
import type { testing } from "@libs/testing"
import type { Arg, Nullable, VirtualWindow } from "@mizu/mizu/core/engine"
import type { Arg, Nullable, VirtualWindow } from "../engine/mod.ts"
import { delay, retry } from "@std/async"
import { unescape } from "@std/html"
import { bgMagenta } from "@std/fmt/colors"
import { expect as _expect, fn, Status, test as _test } from "@libs/testing"
import { AsyncFunction } from "@libs/typing/func"
import { Context } from "@libs/reactive"
import { Window } from "@mizu/mizu/core/vdom"
import { Renderer } from "@mizu/mizu/core/engine"
import { Window } from "../vdom/mod.ts"
import { Renderer } from "../engine/mod.ts"
import { filter } from "./filter.ts"

/**
Expand Down
2 changes: 1 addition & 1 deletion @mizu/mizu/core/vdom/jsdom.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Imports
import type { VirtualWindow } from "@mizu/mizu/core/engine"
import type { VirtualWindow } from "../engine/mod.ts"
import { JSDOM } from "@npm/jsdom"
export type { VirtualWindow }

Expand Down
2 changes: 1 addition & 1 deletion @mizu/mizu/deno.jsonc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mizu/mizu",
"version": "0.5.0",
"version": "0.5.1",
"exports": {
".": "./mod.ts",
"./core/engine": "./core/engine/mod.ts",
Expand Down
4 changes: 2 additions & 2 deletions @mizu/mizu/mod.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Imports
import { type Directive, Phase } from "@mizu/mizu/core/engine"
export type * from "@mizu/mizu/core/engine"
import { type Directive, Phase } from "./core/engine/mod.ts"
export type * from "./core/engine/mod.ts"

/** `*mizu` directive. */
export const _mizu = {
Expand Down

0 comments on commit d778ec1

Please sign in to comment.