Skip to content

Commit

Permalink
Test changeset
Browse files Browse the repository at this point in the history
  • Loading branch information
pomber committed Dec 30, 2022
1 parent 0a4c3e2 commit 3db1e24
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/flat-turtles-breathe.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@code-hike/lighter": patch
---

Test
2 changes: 1 addition & 1 deletion lib/src/file-system.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export async function readJSON(folder, filename) {
let filepath = path.resolve(folderPath, filename);
const result = await fs.readFile(filepath, "utf8");
if (!result) {
throw new Error("no result");
throw new Error("no results");
}
return JSON.parse(result);
} catch (e) {
Expand Down

0 comments on commit 3db1e24

Please sign in to comment.