@akanjs/cli 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/index.js CHANGED
@@ -1050,7 +1050,7 @@ var Executor = class {
1050
1050
  return this;
1051
1051
  }
1052
1052
  writeJson(filePath, content) {
1053
- this.writeFile(filePath, JSON.stringify(content, null, 2));
1053
+ this.writeFile(filePath, JSON.stringify(content, null, 2) + "\n");
1054
1054
  return this;
1055
1055
  }
1056
1056
  getLocalFile(filePath) {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "commonjs",
3
3
  "name": "@akanjs/cli",
4
- "version": "0.0.85",
4
+ "version": "0.0.86",
5
5
  "bin": {
6
6
  "akan": "index.js"
7
7
  },
@@ -48,4 +48,4 @@
48
48
  "vite-plugin-node-polyfills": "^0.23.0",
49
49
  "vite-tsconfig-paths": "^5.1.4"
50
50
  }
51
- }
51
+ }
@@ -1,5 +1,5 @@
1
1
  //! will be replaced with akan.config.ts
2
- import { withBase } from "@akanjs/test/src/playwright.config.base";
2
+ import { withBase } from "@akanjs/test/playwright.config.base";
3
3
 
4
4
  const config = withBase(__filename);
5
5