@getcoherent/cli 0.3.6 → 0.3.7
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/dist/index.js +4 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -6733,7 +6733,8 @@ async function regenerateLayout(config2, projectRoot) {
|
|
|
6733
6733
|
type: "layout",
|
|
6734
6734
|
code: headerCode,
|
|
6735
6735
|
description: "Main site header with navigation and theme toggle",
|
|
6736
|
-
usedIn: ["app/layout.tsx"]
|
|
6736
|
+
usedIn: ["app/layout.tsx"],
|
|
6737
|
+
overwrite: true
|
|
6737
6738
|
});
|
|
6738
6739
|
if (!hasSharedFooter) {
|
|
6739
6740
|
const footerCode = generator.generateSharedFooterCode();
|
|
@@ -6742,7 +6743,8 @@ async function regenerateLayout(config2, projectRoot) {
|
|
|
6742
6743
|
type: "layout",
|
|
6743
6744
|
code: footerCode,
|
|
6744
6745
|
description: "Site footer",
|
|
6745
|
-
usedIn: ["app/layout.tsx"]
|
|
6746
|
+
usedIn: ["app/layout.tsx"],
|
|
6747
|
+
overwrite: true
|
|
6746
6748
|
});
|
|
6747
6749
|
}
|
|
6748
6750
|
}
|