Skip to content

Commit e1b6f33

Browse files
committed
"Minify" middleware package's package.json
We create a `package.json` file for each middleware package. To save some bytes, we shouldn't format it nicely.
1 parent 2919824 commit e1b6f33

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/build-middleware-package.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ async function main(argv) {
5454
await Promise.all([
5555
fs.writeFile(
5656
getStagingFilePath("package.json"),
57-
JSON.stringify(packageJson, null, 2)
57+
JSON.stringify(packageJson)
5858
),
5959
fs.copyFile(
6060
getSourceFilePath("README.md"),

0 commit comments

Comments
 (0)