create-cloudflare 0.0.0-e4ef867c → 0.0.0-e5cdd7fa

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 (101) hide show
  1. package/README.md +1 -52
  2. package/dist/cli.js +40432 -22674
  3. package/package.json +92 -73
  4. package/templates/angular/c3.ts +99 -0
  5. package/{dist/angular/templates/src/main.server.ts → templates/angular/templates/server.ts} +14 -15
  6. package/templates/angular/templates/tools/alter-polyfills.mjs +27 -0
  7. package/templates/angular/templates/tools/copy-files.mjs +9 -0
  8. package/templates/astro/c3.ts +50 -0
  9. package/templates/common/c3.ts +14 -0
  10. package/templates/common/js/__dot__gitignore +172 -0
  11. package/templates/common/js/package.json +1 -0
  12. package/templates/common/js/wrangler.toml +2 -2
  13. package/templates/common/ts/__dot__gitignore +172 -0
  14. package/templates/common/ts/package.json +1 -1
  15. package/templates/common/ts/wrangler.toml +2 -2
  16. package/templates/docusaurus/c3.ts +27 -0
  17. package/templates/gatsby/c3.ts +46 -0
  18. package/templates/hello-world/c3.ts +14 -0
  19. package/templates/hello-world/js/__dot__gitignore +172 -0
  20. package/templates/hello-world/js/package.json +1 -0
  21. package/templates/hello-world/js/wrangler.toml +2 -2
  22. package/templates/hello-world/ts/__dot__gitignore +172 -0
  23. package/templates/hello-world/ts/package.json +1 -1
  24. package/templates/hello-world/ts/wrangler.toml +2 -2
  25. package/templates/hello-world-durable-object/c3.ts +14 -0
  26. package/templates/hello-world-durable-object/js/.editorconfig +13 -0
  27. package/templates/hello-world-durable-object/js/.prettierrc +6 -0
  28. package/templates/hello-world-durable-object/js/__dot__gitignore +172 -0
  29. package/templates/hello-world-durable-object/js/package.json +13 -0
  30. package/templates/hello-world-durable-object/js/src/index.js +65 -0
  31. package/templates/hello-world-durable-object/js/wrangler.toml +51 -0
  32. package/templates/hello-world-durable-object/ts/.editorconfig +13 -0
  33. package/templates/hello-world-durable-object/ts/.prettierrc +6 -0
  34. package/templates/hello-world-durable-object/ts/__dot__gitignore +172 -0
  35. package/templates/hello-world-durable-object/ts/package.json +15 -0
  36. package/templates/hello-world-durable-object/ts/src/index.ts +78 -0
  37. package/templates/hello-world-durable-object/ts/tsconfig.json +101 -0
  38. package/templates/hello-world-durable-object/ts/wrangler.toml +51 -0
  39. package/templates/hono/c3.ts +25 -0
  40. package/templates/next/c3.ts +213 -0
  41. package/templates/next/templates.ts +281 -0
  42. package/templates/nuxt/c3.ts +59 -0
  43. package/templates/openapi/c3.ts +9 -0
  44. package/templates/openapi/ts/README.md +25 -0
  45. package/templates/openapi/ts/__dot__gitignore +171 -0
  46. package/templates/{chatgptPlugin → openapi}/ts/package.json +5 -3
  47. package/templates/openapi/ts/src/endpoints/taskCreate.ts +48 -0
  48. package/templates/openapi/ts/src/endpoints/taskDelete.ts +55 -0
  49. package/templates/openapi/ts/src/endpoints/taskFetch.ts +74 -0
  50. package/templates/openapi/ts/src/endpoints/taskList.ts +66 -0
  51. package/templates/openapi/ts/src/index.ts +29 -0
  52. package/templates/openapi/ts/src/types.ts +9 -0
  53. package/templates/openapi/ts/tsconfig.json +32 -0
  54. package/templates/pre-existing/c3.ts +83 -0
  55. package/templates/pre-existing/js/.editorconfig +13 -0
  56. package/templates/pre-existing/js/.prettierrc +6 -0
  57. package/templates/pre-existing/js/__dot__gitignore +172 -0
  58. package/templates/pre-existing/js/package.json +13 -0
  59. package/templates/pre-existing/js/wrangler.toml +3 -0
  60. package/templates/queues/c3.ts +24 -0
  61. package/templates/queues/js/__dot__gitignore +172 -0
  62. package/templates/queues/js/package.json +1 -0
  63. package/templates/queues/js/wrangler.toml +3 -3
  64. package/templates/queues/ts/__dot__gitignore +172 -0
  65. package/templates/queues/ts/package.json +1 -1
  66. package/templates/queues/ts/wrangler.toml +3 -3
  67. package/templates/qwik/c3.ts +92 -0
  68. package/templates/react/c3.ts +29 -0
  69. package/templates/remix/c3.ts +33 -0
  70. package/templates/scheduled/c3.ts +14 -0
  71. package/templates/scheduled/js/__dot__gitignore +172 -0
  72. package/templates/scheduled/js/package.json +1 -0
  73. package/templates/scheduled/js/wrangler.toml +1 -1
  74. package/templates/scheduled/ts/__dot__gitignore +172 -0
  75. package/templates/scheduled/ts/package.json +1 -1
  76. package/templates/scheduled/ts/wrangler.toml +2 -2
  77. package/templates/solid/c3.ts +37 -0
  78. package/templates/solid/js/vite.config.js +12 -0
  79. package/templates/solid/ts/vite.config.ts +12 -0
  80. package/templates/svelte/c3.ts +77 -0
  81. package/templates/svelte/templates.ts +13 -0
  82. package/templates/vue/c3.ts +27 -0
  83. package/dist/angular/templates/tools/bundle.mjs +0 -77
  84. package/dist/angular/templates/tools/copy-client-files.mjs +0 -4
  85. package/dist/angular/templates/tools/copy-worker-files.mjs +0 -10
  86. package/dist/angular/templates/tsconfig.server.json +0 -5
  87. package/templates/chatgptPlugin/ts/.assets/example.png +0 -0
  88. package/templates/chatgptPlugin/ts/README.md +0 -25
  89. package/templates/chatgptPlugin/ts/src/index.ts +0 -33
  90. package/templates/chatgptPlugin/ts/src/search.ts +0 -63
  91. /package/{dist → templates}/angular/templates/src/_routes.json +0 -0
  92. /package/{dist → templates}/angular/templates/tools/paths.mjs +0 -0
  93. /package/templates/common/js/src/{worker.js → index.js} +0 -0
  94. /package/templates/common/ts/src/{worker.ts → index.ts} +0 -0
  95. /package/templates/hello-world/js/src/{worker.js → index.js} +0 -0
  96. /package/templates/hello-world/ts/src/{worker.ts → index.ts} +0 -0
  97. /package/templates/{chatgptPlugin → openapi}/ts/wrangler.toml +0 -0
  98. /package/templates/queues/js/src/{worker.js → index.js} +0 -0
  99. /package/templates/queues/ts/src/{worker.ts → index.ts} +0 -0
  100. /package/templates/scheduled/js/src/{worker.js → index.js} +0 -0
  101. /package/templates/scheduled/ts/src/{worker.ts → index.ts} +0 -0

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.