RubyGems
npm
Organizations
Log in
Sign up
npm
create-puck-app
Versions diffs
0.14.0-canary.f975d87 → 0.14.0
create-puck-app 0.14.0-canary.f975d87 → 0.14.0
Sign up to get
free
protection for your applications and to get access to all the features.
Files changed (4)
hide
show
package/README.md
+1
-1
package/package.json
+1
-1
package/templates/next/app/layout.tsx
+0
-1
package/templates/next/app/puck/[...puckPath]/page.tsx
+1
-0
package/README.md
CHANGED
Viewed
@@ -18,4 +18,4 @@ yarn create puck-app my-app
18
18
19
19
## License
20
20
21
-
MIT © [Measured
Co.
](https://
github
.
com/measuredco
)
21
+
MIT © [Measured
Corporation Ltd
](https://
measured
.
co
)
package/package.json
CHANGED
Viewed
@@ -1,6 +1,6 @@
1
1
{
2
2
"name": "create-puck-app",
3
-
"version": "0.14.0
-canary.f975d87
",
3
+
"version": "0.14.0",
4
4
"author": "Measured Corporation Ltd <hello@measured.co>",
5
5
"repository": "measuredco/puck",
6
6
"bugs": "https://github.com/measuredco/puck/issues",
package/templates/next/app/layout.tsx
CHANGED
Viewed
@@ -1,4 +1,3 @@
1
-
import "@measured/puck/puck.css";
2
1
import "./styles.css";
3
2
4
3
export default function RootLayout({
package/templates/next/app/puck/[...puckPath]/page.tsx
CHANGED
Viewed
@@ -11,6 +11,7 @@
11
11
* NB this route is public, and you will need to add authentication
12
12
*/
13
13
14
+
import "@measured/puck/puck.css";
14
15
import { Client } from "./client";
15
16
import { Metadata } from "next";
16
17
import { getPage } from "../../../lib/get-page";