Skip to content

Commit 66429c6

Browse files
committed
Format
1 parent 7835f9e commit 66429c6

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.scripts/update.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,10 @@ const updateDependency = (projectPath, version) => {
2323
) {
2424
console.log(`Updating @huggingface/transformers in ${projectPath}`);
2525
packageJson.dependencies["@huggingface/transformers"] = version;
26-
writeFileSync(packageJsonPath, JSON.stringify(packageJson, null, 2) + "\n");
26+
writeFileSync(
27+
packageJsonPath,
28+
JSON.stringify(packageJson, null, 2) + "\n",
29+
);
2730
}
2831

2932
// Detect lock file and run appropriate command

0 commit comments

Comments
 (0)