Skip to content

Commit 6df3292

Browse files
committed
chore: cover dev-packages files
1 parent 1f71382 commit 6df3292

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@
2828
"format": "oxfmt . --write",
2929
"lint": "run-s lint:oxfmt lint:oxlint",
3030
"lint:oxfmt": "oxfmt . --check",
31-
"lint:oxlint": "oxlint packages/",
32-
"lint:oxlint:type-aware": "oxlint packages/ --type-aware",
31+
"lint:oxlint": "oxlint .",
32+
"lint:oxlint:type-aware": "oxlint . --type-aware",
3333
"lint:es-compatibility": "nx run-many -t lint:es-compatibility",
3434
"dedupe-deps:check": "yarn-deduplicate yarn.lock --list --fail",
3535
"dedupe-deps:fix": "yarn-deduplicate yarn.lock",

scripts/bump-version.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ function createTempDir(): string {
1111

1212
function writePackageJson(dir: string, content: Record<string, unknown>): void {
1313
fs.mkdirSync(dir, { recursive: true });
14-
fs.writeFileSync(path.join(dir, 'package.json'), JSON.stringify(content, null, 2) + '\n');
14+
fs.writeFileSync(path.join(dir, 'package.json'), `${JSON.stringify(content, null, 2)}\n`);
1515
}
1616

1717
function readPackageJson(dir: string): Record<string, any> {

0 commit comments

Comments
 (0)