Skip to content
Open
Show file tree
Hide file tree
Changes from 11 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .tokeignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
upstream/
worktrees/
2 changes: 1 addition & 1 deletion bench/moon.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "tonyfettes/ghostty-bench"
version = "0.1.0"

import {
"tonyfettes/ghostty@0.3.0",
"tonyfettes/ghostty-terminal@0.3.0",
}

warnings = "+unnecessary_annotation+unnecessary_view_op+prefer_readonly_array+prefer_fixed_array+ambiguous_range_direction+deprecated_for_in_method+unqualified_local_using+lexmatch_longest_match"
2 changes: 1 addition & 1 deletion bench/workloads/moon.pkg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import {
"tonyfettes/ghostty/terminal",
"tonyfettes/ghostty-terminal" @terminal,
}

import {
Expand Down
4 changes: 2 additions & 2 deletions bench/workloads/pkg.generated.mbti
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
package "tonyfettes/ghostty-bench/workloads"

import {
"tonyfettes/ghostty/terminal",
"tonyfettes/ghostty-terminal",
}

// Values
Expand Down Expand Up @@ -34,7 +34,7 @@ pub fn wrapped_blob() -> Workload

// Types and methods
type Workload
pub fn Workload::process(Self) -> @terminal.StreamTerminal
pub fn Workload::process(Self) -> @ghostty-terminal.StreamTerminal
pub fn Workload::run_main(Self) -> Unit

// Type aliases
Expand Down
2 changes: 1 addition & 1 deletion examples/moon.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "tonyfettes/ghostty-examples"
version = "0.1.0"

import {
"tonyfettes/ghostty@0.3.0",
"tonyfettes/ghostty-terminal@0.3.0",
"moonbit-community/rabbita@0.12.1",
"moonbit-community/pty@0.2.0",
"moonbitlang/async@0.19.1",
Expand Down
12 changes: 6 additions & 6 deletions examples/rabbita_asciinema/main/moon.pkg
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ import {
"moonbitlang/core/encoding/utf8",
"moonbitlang/core/json",
"moonbitlang/core/string",
"tonyfettes/ghostty/terminal",
"tonyfettes/ghostty/terminal/size_report",
"tonyfettes/ghostty/terminal/color",
"tonyfettes/ghostty/terminal/page",
"tonyfettes/ghostty/terminal/sgr",
"tonyfettes/ghostty/terminal/style",
"tonyfettes/ghostty-terminal" @terminal,
"tonyfettes/ghostty-terminal/size_report",
"tonyfettes/ghostty-terminal/color",
"tonyfettes/ghostty-terminal/page",
"tonyfettes/ghostty-terminal/sgr",
"tonyfettes/ghostty-terminal/style",
}

supported_targets = "js"
Expand Down
22 changes: 11 additions & 11 deletions examples/terminal_playground/core/moon.pkg
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
import {
"tonyfettes/ghostty/terminal",
"tonyfettes/ghostty/terminal/size_report",
"tonyfettes/ghostty/terminal/page",
"tonyfettes/ghostty/terminal/point",
"tonyfettes/ghostty/terminal/cursor",
"tonyfettes/ghostty/terminal/pagelist",
"tonyfettes/ghostty/terminal/hyperlink",
"tonyfettes/ghostty/terminal/result_code",
"tonyfettes/ghostty/terminal/sgr",
"tonyfettes/ghostty/terminal/color",
"tonyfettes/ghostty/terminal/style",
"tonyfettes/ghostty-terminal" @terminal,
"tonyfettes/ghostty-terminal/size_report",
"tonyfettes/ghostty-terminal/page",
"tonyfettes/ghostty-terminal/point",
"tonyfettes/ghostty-terminal/cursor",
"tonyfettes/ghostty-terminal/pagelist",
"tonyfettes/ghostty-terminal/hyperlink",
"tonyfettes/ghostty-terminal/result_code",
"tonyfettes/ghostty-terminal/sgr",
"tonyfettes/ghostty-terminal/color",
"tonyfettes/ghostty-terminal/style",
"moonbitlang/core/buffer",
"moonbitlang/core/encoding/base64",
"moonbitlang/core/encoding/utf8",
Expand Down
4 changes: 2 additions & 2 deletions examples/tmux/moon.pkg
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ import {
"moonbitlang/core/env",
"moonbitlang/core/json",
"moonbitlang/core/string",
"tonyfettes/ghostty/terminal",
"tonyfettes/ghostty/terminal/size_report",
"tonyfettes/ghostty-terminal" @terminal,
"tonyfettes/ghostty-terminal/size_report",
}

supported_targets = "native"
Expand Down
Loading
Loading