mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
Add trailing newline to bundle/programs/server/package.json.
This commit is contained in:
@@ -2028,7 +2028,10 @@ class ServerTarget extends JsImageTarget {
|
||||
serverPkgJson.scripts.install = "node npm-rebuild.js";
|
||||
|
||||
builder.write('package.json', {
|
||||
data: new Buffer(JSON.stringify(serverPkgJson, null, 2), "utf8")
|
||||
data: new Buffer(
|
||||
JSON.stringify(serverPkgJson, null, 2) + "\n",
|
||||
"utf8"
|
||||
)
|
||||
});
|
||||
|
||||
builder.write('npm-shrinkwrap.json', {
|
||||
|
||||
Reference in New Issue
Block a user