Skip to content
This repository was archived by the owner on Feb 5, 2026. It is now read-only.

Commit 8907c1b

Browse files
Merge pull request #16 from Multiverse-io/fix-bad-import-path
Fix relative import
2 parents 0306bd7 + 4b9a6b2 commit 8907c1b

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.changeset/wide-mammals-go.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@multiverse-io/cari": patch
3+
---
4+
5+
Fix import paths causing build to fail

src/rules/cari-yaml.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { errorMessage } from "../utils/user-message.js";
55
import { CariYaml } from "./types.js";
66
import { SelectedRules } from "./types.js";
77
import { cariYamlSchema } from "./types.js";
8-
import { getHomeDir } from "~/utils/file.js";
8+
import { getHomeDir } from "../utils/file.js";
99
export const writeNewCariYamlFile = async (cariYaml: CariYaml) => {
1010
const cariYamlWithRelativePath = {
1111
...cariYaml,

0 commit comments

Comments
 (0)