@topogram/cli 0.3.67 → 0.3.68

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": "@topogram/cli",
3
- "version": "0.3.67",
3
+ "version": "0.3.68",
4
4
  "description": "Topogram CLI for checking Topogram workspaces and generating app bundles.",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
@@ -326,8 +326,8 @@ export function currentTemplateOwnedFiles(projectRoot, includeImplementation, pr
326
326
  if (fs.existsSync(projectConfigPath)) {
327
327
  files.set("topogram.project.json", {
328
328
  path: "topogram.project.json",
329
- absolutePath: projectConfigPath,
330
- content: null
329
+ absolutePath: null,
330
+ content: `${stableJsonStringify(JSON.parse(fs.readFileSync(projectConfigPath, "utf8")))}\n`
331
331
  });
332
332
  }
333
333
  return files;