Skip to content

Commit 4b208a0

Browse files
committed
fix: jsx import paths
1 parent d2f7ab4 commit 4b208a0

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

lib/src/gtk3/jsx-runtime.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/* eslint-disable @typescript-eslint/no-namespace */
22
import Gtk from "gi://Gtk?version=3.0"
33
import Astal from "gi://Astal?version=3.0"
4-
import { CCProps } from "../../gnim/src/jsx/index.js"
4+
import { CCProps } from "../../gnim/src/index.js"
55
import { intrinsicElements } from "../../gnim/src/gtk3/jsx-runtime.js"
66

77
type Props<T extends Gtk.Widget, Props> = CCProps<T, Partial<Props>>

lib/src/gtk4/jsx-runtime.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/* eslint-disable @typescript-eslint/no-namespace */
22
import Gtk from "gi://Gtk?version=4.0"
33
import Astal from "gi://Astal?version=4.0"
4-
import { CCProps } from "../../gnim/src/jsx/index.js"
4+
import { CCProps } from "../../gnim/src/index.js"
55
import { intrinsicElements } from "../../gnim/src/gtk4/jsx-runtime.js"
66

77
type Props<T extends Gtk.Widget, Props> = CCProps<T, Partial<Props>>

lib/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export * from "../gnim/src/jsx/index.js"
1+
export * from "../gnim/src/index.js"

lib/src/process.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import AstalIO from "gi://AstalIO"
2-
import { Accessor } from "../gnim/src/jsx/index.js"
2+
import { Accessor } from "../gnim/src/index.js"
33

44
type Args = {
55
cmd: string | string[]

lib/src/time.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import AstalIO from "gi://AstalIO"
2-
import { Accessor } from "../gnim/src/jsx/index.js"
2+
import { Accessor } from "../gnim/src/index.js"
33
import { execAsync } from "./process.js"
44

55
export type Time = AstalIO.Time

0 commit comments

Comments
 (0)