Skip to content

Commit

Permalink
"Minify" middleware package's package.json
Browse files Browse the repository at this point in the history
We create a `package.json` file for each middleware package. To save
some bytes, we shouldn't format it nicely.
  • Loading branch information
EvanHahn committed Jan 18, 2021
1 parent 2919824 commit e1b6f33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/build-middleware-package.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ async function main(argv) {
await Promise.all([
fs.writeFile(
getStagingFilePath("package.json"),
JSON.stringify(packageJson, null, 2)
JSON.stringify(packageJson)
),
fs.copyFile(
getSourceFilePath("README.md"),
Expand Down

0 comments on commit e1b6f33

Please sign in to comment.