@quilted/create 0.2.49 → 0.3.1

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.
Files changed (35) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/build/esm/node_modules/.pnpm/prettier@3.5.1/node_modules/prettier/plugins/typescript.mjs +1 -1
  3. package/build/esm/node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/dist/prompts.mjs +1 -1
  4. package/build/esm/node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/lib/prompts.mjs +1 -1
  5. package/build/esnext/_virtual/index7.esnext +2 -2
  6. package/build/esnext/_virtual/index8.esnext +2 -2
  7. package/build/esnext/node_modules/.pnpm/dir-glob@3.0.1/node_modules/dir-glob/index.esnext +1 -1
  8. package/build/esnext/node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/utils/index.esnext +1 -1
  9. package/build/esnext/node_modules/.pnpm/prettier@3.5.1/node_modules/prettier/plugins/typescript.esnext +2 -2
  10. package/build/esnext/node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/dist/prompts.esnext +1 -1
  11. package/build/esnext/node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/lib/prompts.esnext +1 -1
  12. package/package.json +1 -1
  13. package/templates/app-basic/App.tsx +8 -20
  14. package/templates/app-basic/package.json +2 -1
  15. package/templates/app-basic/server.tsx +7 -5
  16. package/templates/app-basic/shared/context.ts +2 -2
  17. package/templates/app-basic/tests/render/render.tsx +3 -3
  18. package/templates/app-empty/package.json +2 -1
  19. package/templates/app-empty/server.tsx +6 -5
  20. package/templates/app-graphql/App.tsx +14 -22
  21. package/templates/app-graphql/package.json +2 -1
  22. package/templates/app-graphql/server.tsx +11 -7
  23. package/templates/app-graphql/shared/context.ts +3 -11
  24. package/templates/app-graphql/shared/graphql.ts +10 -0
  25. package/templates/app-graphql/tests/render/render.tsx +3 -3
  26. package/templates/app-trpc/App.tsx +15 -22
  27. package/templates/app-trpc/package.json +2 -1
  28. package/templates/app-trpc/server.tsx +18 -18
  29. package/templates/app-trpc/shared/context.ts +2 -2
  30. package/templates/app-trpc/tests/render/render.tsx +3 -3
  31. package/templates/github/_github/workflows/actions/prepare/action.yml +6 -3
  32. package/templates/github/_github/workflows/ci.yml +7 -4
  33. package/templates/server-basic/package.json +1 -1
  34. package/templates/server-basic/server.ts +2 -2
  35. package/templates/workspace/package.json +5 -5
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # @quilted/create
2
2
 
3
+ ## 0.3.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [`eef99d6`](https://github.com/lemonmade/quilt/commit/eef99d6c3daeffdc7b9bf7d48fb13d211ff96af0) Thanks [@lemonmade](https://github.com/lemonmade)! - Update template dependencies
8
+
9
+ - [`e97d495`](https://github.com/lemonmade/quilt/commit/e97d4958f87addc7845057a44e7434e0152b718c) Thanks [@lemonmade](https://github.com/lemonmade)! - Fix more template issues
10
+
11
+ ## 0.3.0
12
+
13
+ ### Minor Changes
14
+
15
+ - [#872](https://github.com/lemonmade/quilt/pull/872) [`8bf65e7`](https://github.com/lemonmade/quilt/commit/8bf65e797f929ee95730323426c229409e65c9a4) Thanks [@lemonmade](https://github.com/lemonmade)! - Replace @quilted/request-router with Hono
16
+
3
17
  ## 0.2.49
4
18
 
5
19
  ### Patch Changes