create-puck-app 0.19.0-canary.fb0e8e24 → 0.19.1-canary.083aa3d5

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.1-canary.083aa3d5",
4
4
  "author": "Chris Villa <chris@puckeditor.com>",
5
5
  "repository": "measuredco/puck",
6
6
  "bugs": "https://github.com/measuredco/puck/issues",
@@ -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"
@@ -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)