Skip to content

Commit 7e20eec

Browse files
Add new line at the end of scope tests json
1 parent 3b99137 commit 7e20eec

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

packages/cursorless-org-docs/scripts/prepare-assets.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,5 +176,6 @@ function saveFixtures(fixtures: Fixture[]) {
176176
"static",
177177
"scopeTests.json",
178178
);
179-
fs.writeFileSync(assetPath, JSON.stringify(fixtures, null, 2), "utf8");
179+
const content = JSON.stringify(fixtures, null, 2) + "\n";
180+
fs.writeFileSync(assetPath, content, "utf8");
180181
}

packages/cursorless-org-docs/static/scopeTests.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27091,4 +27091,4 @@
2709127091
}
2709227092
]
2709327093
}
27094-
]
27094+
]

0 commit comments

Comments
 (0)