create-puck-app 0.19.0-canary.fb0e8e24 → 0.19.0

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": "create-puck-app",
3
- "version": "0.19.0-canary.fb0e8e24",
3
+ "version": "0.19.0",
4
4
  "author": "Chris Villa <chris@puckeditor.com>",
5
5
  "repository": "measuredco/puck",
6
6
  "bugs": "https://github.com/measuredco/puck/issues",
@@ -0,0 +1,32 @@
1
+
2
+ yarn run v1.22.19
3
+ $ next build
4
+ ▲ Next.js 15.2.4
5
+
6
+   Creating an optimized production build ...
7
+ ✓ Compiled successfully
8
+ [?25l   Linting and checking validity of types .   Linting and checking validity of types ..   Linting and checking validity of types ...   Linting and checking validity of types .   Linting and checking validity of types ..   Linting and checking validity of types ...   Linting and checking validity of types .   Linting and checking validity of types ..   Linting and checking validity of types ...[?25h   Linting and checking validity of types
9
  ✓ Linting and checking validity of types
10
+ [?25l   Collecting page data .   Collecting page data ..   Collecting page data ...[?25h   Collecting page data
1
11
  ✓ Collecting page data
12
+ [?25l   Generating static pages (0/6) [ ]   Generating static pages (0/6) [= ]   Generating static pages (0/6) [== ][?25h ✓ Generating static pages (6/6)
13
+ [?25l   Finalizing page optimization .[?25l   Collecting build traces .   Finalizing page optimization ..   Collecting build traces ..   Finalizing page optimization ...   Collecting build traces ...   Finalizing page optimization .   Collecting build traces .   Finalizing page optimization ..   Collecting build traces ..   Finalizing page optimization ...   Collecting build traces ...   Finalizing page optimization .   Collecting build traces .   Finalizing page optimization ..   Collecting build traces ..   Finalizing page optimization ...   Collecting build traces ...   Finalizing page optimization .   Collecting build traces .   Finalizing page optimization ..   Collecting build traces ..   Finalizing page optimization ...   Collecting build traces ...   Finalizing page optimization .   Collecting build traces .   Finalizing page optimization ..   Collecting build traces ..[?25h   Collecting build traces
2
14
  ✓ Collecting build traces
15
+ [?25h   Finalizing page optimization
3
16
  ✓ Finalizing page optimization
17
+
18
+ Route (app) Size First Load JS  
19
+ ┌ ○ / 279 B 187 kB
20
+ ├ ○ /_not-found 976 B 101 kB
21
+ ├ ○ /[...puckPath] 279 B 187 kB
22
+ ├ ƒ /puck 377 B 187 kB
23
+ ├ ƒ /puck/[...puckPath] 377 B 187 kB
24
+ └ ƒ /puck/api 136 B 101 kB
25
+ + First Load JS shared by all 100 kB
26
+ ├ chunks/4bd1b696-d1ba7a1b5de80c62.js 53.2 kB
27
+ ├ chunks/684-527e521462300bb3.js 45.3 kB
28
+ └ other shared chunks (total) 1.89 kB
29
+
30
+
31
+ ƒ Middleware 32.5 kB
32
+
33
+ ○ (Static) prerendered as static content
34
+ ƒ (Dynamic) server-rendered on demand
35
+
36
+ [?25h✨ Done in 16.01s.
@@ -0,0 +1,5 @@
1
+
2
+ yarn run v1.22.19
3
+ $ next lint
4
+ ✔ No ESLint warnings or errors
5
+ ✨ Done in 2.99s.
@@ -36,7 +36,3 @@ To adopt this recipe you will need to:
36
36
  - Implement a custom puck configuration in `puck.config.tsx`
37
37
 
38
38
  By default, this recipe will generate static pages by setting `dynamic` to [`force-static`](https://nextjs.org/docs/app/api-reference/file-conventions/route-segment-config#dynamic) in the `/app/[...puckPath]/page.tsx`. This will strip headers and cookies. If you need dynamic pages, you can delete this.
39
-
40
- ## License
41
-
42
- MIT © [The Puck Contributors](https://github.com/measuredco/puck/graphs/contributors)
@@ -33,7 +33,3 @@ To adopt this recipe, you will need to:
33
33
  - **IMPORTANT** Add authentication to `/edit` routes. This can be done by modifying the [route module action](https://reactrouter.com/start/framework/route-module#action) in the splat route `/app/routes/puck-splat.tsx`. **If you don't do this, Puck will be completely public.**
34
34
  - Integrate your database into the functions in `/lib/pages.server.ts`
35
35
  - Implement a custom puck configuration in `/app/puck.config.tsx`
36
-
37
- ## License
38
-
39
- MIT © [The Puck Contributors](https://github.com/measuredco/puck/graphs/contributors)
@@ -25,7 +25,7 @@
25
25
  "@types/react-dom": "^19.1.2",
26
26
  "typescript": "^5.8.3",
27
27
  "vite": "^6.3.3",
28
- "vite
28
+ "vite-tsconfig-paths": "^5.1.4"
29
29
  },
30
30
  "engines": {
31
31
  "node": ">=20.0.0"
@@ -0,0 +1,6 @@
1
+
2
+ yarn run v1.22.19
3
+ $ remix build
4
+  info  building... (NODE_ENV=production)
5
+  info  built (1.8s)
6
+ ✨ Done in 3.83s.
@@ -40,7 +40,3 @@ By default, this recipe will have JavaScript enable on all routes - like a usual
40
40
  ## Disabling JavaScript
41
41
 
42
42
  This recipe can be adapted to disable JavaScript. See the [Remix docs](https://remix.run/docs/en/main/guides/disabling-javascript) for steps on how to do this.
43
-
44
- ## License
45
-
46
- MIT © [The Puck Contributors](https://github.com/measuredco/puck/graphs/contributors)