Skip to content

Commit

Permalink
refactor: packa
Browse files Browse the repository at this point in the history
  • Loading branch information
rharkor committed Sep 26, 2023
1 parent a4da8af commit 3cd4ea0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/runtime.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const processPackageFile = async (currentRuntime: IRuntime, newRuntime: IRuntime
scripts[script] = scripts[script].replaceAll(currentRuntime.npx, newRuntime.npx)
}
//? Save the package.json
await fs.writeFile(file, JSON.stringify(packageJson, null, 2), "utf8")
await fs.writeFile(file, JSON.stringify(packageJson, null, 2) + "\n", "utf8")
chalk.blue(`Done for ${file}`)
}
}
Expand Down

0 comments on commit 3cd4ea0

Please sign in to comment.