Skip to content

Commit 3db1e24

Browse files
committed
Test changeset
1 parent 0a4c3e2 commit 3db1e24

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.changeset/flat-turtles-breathe.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@code-hike/lighter": patch
3+
---
4+
5+
Test

lib/src/file-system.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export async function readJSON(folder, filename) {
88
let filepath = path.resolve(folderPath, filename);
99
const result = await fs.readFile(filepath, "utf8");
1010
if (!result) {
11-
throw new Error("no result");
11+
throw new Error("no results");
1212
}
1313
return JSON.parse(result);
1414
} catch (e) {

0 commit comments

Comments
 (0)