@webflow/webflow-cli 1.7.1 → 1.7.3

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/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @webflow/webflow-cli
2
2
 
3
+ ## 1.7.3
4
+
5
+ ### Patch Changes
6
+
7
+ - adding webpack-merge to package.json
8
+
9
+ ## 1.7.2
10
+
11
+ ### Patch Changes
12
+
13
+ - Improved error messages and Cloud scaffolds
14
+
3
15
  ## 1.7.1
4
16
 
5
17
  ### Patch Changes
@@ -1,8 +1,8 @@
1
1
  import type { Metadata } from "next";
2
2
  import { Geist, Geist_Mono, Inter } from "next/font/google";
3
3
  import "./globals.css";
4
- import "../../devlink/global.css";
5
- import { DevLinkProvider } from "../../devlink/DevLinkProvider";
4
+ import "@/devlink/global.css";
5
+ import { DevLinkProvider } from "@/devlink/DevLinkProvider";
6
6
 
7
7
  const inter = Inter({
8
8
  subsets: ["latin"],
@@ -34,7 +34,11 @@ export default function RootLayout({
34
34
  <body
35
35
  className={`${geistSans.variable} ${geistMono.variable} ${inter.variable} antialiased`}
36
36
  >
37
- <DevLinkProvider>{children}</DevLinkProvider>
37
+ <DevLinkProvider>
38
+ {/* Add here any Navbar or Header you want to be present on all pages */}
39
+ {children}
40
+ {/* Add here any Footer you want to be present on all pages */}
41
+ </DevLinkProvider>
38
42
  </body>
39
43
  </html>
40
44
  );
@@ -1,6 +1,6 @@
1
1
  "use client";
2
2
 
3
- import { Section, Block, Link } from "../../devlink/_Builtin";
3
+ import { Section, Block, Link } from "@/devlink/_Builtin";
4
4
 
5
5
  export default function Home() {
6
6
  return (
@@ -3,7 +3,7 @@
3
3
  "framework": "nextjs"
4
4
  },
5
5
  "devlink": {
6
- "rootDir": "./devlink",
6
+ "rootDir": "./src/devlink",
7
7
  "cssModules": true
8
8
  }
9
9
  }