Skip to content

Commit 74246ea

Browse files
authored
feat(ext/canvas): text-style state fields (#214)
* feat(ext/canvas): text-stylel state fields * chore: fmt
1 parent bfa85ca commit 74246ea

26 files changed

Lines changed: 2679 additions & 910 deletions

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ authors = ["the Andromeda team"]
77
edition = "2024"
88
license = "Mozilla Public License 2.0"
99
repository = "https://github.com/tryandromeda/andromeda"
10-
version = "0.1.8"
10+
version = "0.1.9"
1111

1212
[workspace.dependencies]
1313
andromeda-core = { path = "crates/core" }

crates/cli/src/bundle.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,6 @@ fn should_transform_typescript(input_path: &Path, output_path: &Path) -> bool {
9696
.and_then(|s| s.to_str())
9797
.unwrap_or("");
9898

99-
// Transform TypeScript to JavaScript if:
100-
// - Input is .ts/.tsx and output is .js/.jsx
10199
matches!(
102100
(input_ext, output_ext),
103101
("ts", "js") | ("tsx", "jsx") | ("ts", "jsx") | ("tsx", "js")

0 commit comments

Comments
 (0)