@akanjs/devkit 0.0.85 → 0.0.86

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@akanjs/devkit",
3
- "version": "0.0.85",
3
+ "version": "0.0.86",
4
4
  "type": "module",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -34,4 +34,4 @@
34
34
  "import": "./index.js"
35
35
  }
36
36
  }
37
- }
37
+ }
package/src/executors.cjs CHANGED
@@ -142,7 +142,7 @@ class Executor {
142
142
  return this;
143
143
  }
144
144
  writeJson(filePath, content) {
145
- this.writeFile(filePath, JSON.stringify(content, null, 2));
145
+ this.writeFile(filePath, JSON.stringify(content, null, 2) + "\n");
146
146
  return this;
147
147
  }
148
148
  getLocalFile(filePath) {
package/src/executors.js CHANGED
@@ -106,7 +106,7 @@ class Executor {
106
106
  return this;
107
107
  }
108
108
  writeJson(filePath, content) {
109
- this.writeFile(filePath, JSON.stringify(content, null, 2));
109
+ this.writeFile(filePath, JSON.stringify(content, null, 2) + "\n");
110
110
  return this;
111
111
  }
112
112
  getLocalFile(filePath) {