@neon-rs/manifest 0.0.5 → 0.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/lib/util.cjs +1 -1
  2. package/package.json +1 -1
package/lib/util.cjs CHANGED
@@ -73,7 +73,7 @@ class AbstractManifest {
73
73
  set version(value) { this._json.version = value; }
74
74
  get description() { return this._json.description ?? ""; }
75
75
  async save(log) {
76
- await fs.writeFile(path.join(this.dir, "package.json"), JSON.stringify(this._json, null, 2), { encoding: 'utf8' });
76
+ await fs.writeFile(path.join(this.dir, "package.json"), JSON.stringify(this._json, null, 2) + "\n", { encoding: 'utf8' });
77
77
  }
78
78
  stringify() {
79
79
  return JSON.stringify(this._json);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@neon-rs/manifest",
3
3
  "private": false,
4
- "version": "0.0.5",
4
+ "version": "0.0.6",
5
5
  "description": "Library for working with Neon package configuration.",
6
6
  "exports": {
7
7
  ".": {