Skip to content

Commit

Permalink
Use *.js prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
samestep committed Jan 3, 2024
1 parent e141be8 commit 6f82b50
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions packages/rose/src/array.rose
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use { linearize, transpose } from "./ad"
use { + } from "./num"
use { linearize, transpose } from "./ad.js"
use { + } from "./num.js"

val T => init : u32 -> []T

Expand Down
4 changes: 2 additions & 2 deletions packages/rose/src/prelude.rose
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
pub use { len, map, new } from "./array"
pub use { +, -, *, / } from "./num"
pub use { len, map, new } from "./array.js"
pub use { +, -, *, / } from "./num.js"

0 comments on commit 6f82b50

Please sign in to comment.