@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 +2 -2
- package/src/executors.cjs +1 -1
- package/src/executors.js +1 -1
package/package.json
CHANGED
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) {
|