@opennextjs/cloudflare 0.2.1 → 0.3.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.
Files changed (100) hide show
  1. package/README.md +48 -38
  2. package/dist/api/{get-cloudflare-context.d.mts → get-cloudflare-context.d.ts} +4 -4
  3. package/dist/api/get-cloudflare-context.js +39 -0
  4. package/dist/api/index.d.ts +1 -0
  5. package/dist/api/index.js +1 -0
  6. package/dist/api/kvCache.d.ts +27 -0
  7. package/dist/api/kvCache.js +121 -0
  8. package/dist/cli/args.d.ts +5 -0
  9. package/dist/cli/args.js +48 -0
  10. package/dist/cli/build/bundle-server.d.ts +6 -0
  11. package/dist/cli/build/bundle-server.js +188 -0
  12. package/dist/cli/build/index.d.ts +9 -0
  13. package/dist/cli/build/index.js +123 -0
  14. package/dist/cli/build/open-next/compile-env-files.d.ts +5 -0
  15. package/dist/cli/build/open-next/compile-env-files.js +9 -0
  16. package/dist/cli/build/open-next/copyCacheAssets.d.ts +2 -0
  17. package/dist/cli/build/open-next/copyCacheAssets.js +10 -0
  18. package/dist/cli/build/open-next/createServerBundle.d.ts +2 -0
  19. package/dist/cli/build/open-next/createServerBundle.js +216 -0
  20. package/dist/cli/build/patches/index.d.ts +2 -0
  21. package/dist/cli/build/patches/index.js +2 -0
  22. package/dist/cli/build/patches/investigated/copy-package-cli-files.d.ts +6 -0
  23. package/dist/cli/build/patches/investigated/copy-package-cli-files.js +12 -0
  24. package/dist/cli/build/patches/investigated/index.d.ts +4 -0
  25. package/dist/cli/build/patches/investigated/index.js +4 -0
  26. package/dist/cli/build/patches/investigated/patch-cache.d.ts +13 -0
  27. package/dist/cli/build/patches/investigated/patch-cache.js +22 -0
  28. package/dist/cli/build/patches/investigated/patch-require.d.ts +7 -0
  29. package/dist/cli/build/patches/investigated/patch-require.js +9 -0
  30. package/dist/cli/build/patches/investigated/update-webpack-chunks-file/get-chunk-installation-identifiers.d.ts +13 -0
  31. package/dist/cli/build/patches/investigated/update-webpack-chunks-file/get-chunk-installation-identifiers.js +82 -0
  32. package/dist/cli/build/patches/investigated/update-webpack-chunks-file/get-chunk-installation-identifiers.test.d.ts +1 -0
  33. package/dist/cli/build/patches/investigated/update-webpack-chunks-file/get-chunk-installation-identifiers.test.js +20 -0
  34. package/dist/cli/build/patches/investigated/update-webpack-chunks-file/get-file-content-with-updated-webpack-f-require-code.d.ts +19 -0
  35. package/dist/cli/build/patches/investigated/update-webpack-chunks-file/get-file-content-with-updated-webpack-f-require-code.js +76 -0
  36. package/dist/cli/build/patches/investigated/update-webpack-chunks-file/get-file-content-with-updated-webpack-f-require-code.test.d.ts +1 -0
  37. package/dist/cli/build/patches/investigated/update-webpack-chunks-file/get-file-content-with-updated-webpack-f-require-code.test.js +23 -0
  38. package/dist/cli/build/patches/investigated/update-webpack-chunks-file/get-updated-webpack-chunks-file-content.d.ts +14 -0
  39. package/dist/cli/build/patches/investigated/update-webpack-chunks-file/get-updated-webpack-chunks-file-content.js +22 -0
  40. package/dist/cli/build/patches/investigated/update-webpack-chunks-file/get-updated-webpack-chunks-file-content.test.d.ts +1 -0
  41. package/dist/cli/build/patches/investigated/update-webpack-chunks-file/get-updated-webpack-chunks-file-content.test.js +15 -0
  42. package/dist/cli/build/patches/investigated/update-webpack-chunks-file/index.d.ts +8 -0
  43. package/dist/cli/build/patches/investigated/update-webpack-chunks-file/index.js +22 -0
  44. package/dist/cli/build/patches/to-investigate/index.d.ts +8 -0
  45. package/dist/cli/build/patches/to-investigate/index.js +8 -0
  46. package/dist/cli/build/patches/to-investigate/inline-eval-manifest.d.ts +9 -0
  47. package/dist/cli/build/patches/to-investigate/inline-eval-manifest.js +32 -0
  48. package/dist/cli/build/patches/to-investigate/inline-middleware-manifest-require.d.ts +6 -0
  49. package/dist/cli/build/patches/to-investigate/inline-middleware-manifest-require.js +13 -0
  50. package/dist/cli/build/patches/to-investigate/inline-next-require.d.ts +6 -0
  51. package/dist/cli/build/patches/to-investigate/inline-next-require.js +36 -0
  52. package/dist/cli/build/patches/to-investigate/patch-exception-bubbling.d.ts +7 -0
  53. package/dist/cli/build/patches/to-investigate/patch-exception-bubbling.js +9 -0
  54. package/dist/cli/build/patches/to-investigate/patch-find-dir.d.ts +8 -0
  55. package/dist/cli/build/patches/to-investigate/patch-find-dir.js +21 -0
  56. package/dist/cli/build/patches/to-investigate/patch-load-instrumentation-module.d.ts +14 -0
  57. package/dist/cli/build/patches/to-investigate/patch-load-instrumentation-module.js +34 -0
  58. package/dist/cli/build/patches/to-investigate/patch-read-file.d.ts +3 -0
  59. package/dist/cli/build/patches/to-investigate/patch-read-file.js +29 -0
  60. package/dist/cli/build/patches/to-investigate/wrangler-deps.d.ts +2 -0
  61. package/dist/cli/build/patches/to-investigate/wrangler-deps.js +54 -0
  62. package/dist/cli/build/utils/extract-project-env-vars.d.ts +18 -0
  63. package/dist/cli/build/utils/extract-project-env-vars.js +32 -0
  64. package/dist/cli/build/utils/extract-project-env-vars.spec.d.ts +1 -0
  65. package/dist/cli/build/utils/extract-project-env-vars.spec.js +57 -0
  66. package/dist/cli/build/utils/index.d.ts +3 -0
  67. package/dist/cli/build/utils/index.js +3 -0
  68. package/dist/cli/build/utils/normalize-path.d.ts +1 -0
  69. package/dist/cli/build/utils/normalize-path.js +4 -0
  70. package/dist/cli/build/utils/read-paths-recursively.d.ts +7 -0
  71. package/dist/cli/build/utils/read-paths-recursively.js +20 -0
  72. package/dist/cli/build/utils/ts-parse-file.d.ts +8 -0
  73. package/dist/cli/build/utils/ts-parse-file.js +12 -0
  74. package/dist/cli/config.d.ts +41 -0
  75. package/dist/cli/config.js +92 -0
  76. package/dist/cli/index.d.ts +2 -0
  77. package/dist/cli/index.js +12 -0
  78. package/dist/cli/templates/shims/empty.d.ts +2 -0
  79. package/dist/cli/templates/shims/env.d.ts +1 -0
  80. package/dist/cli/templates/shims/env.js +1 -0
  81. package/dist/cli/templates/shims/node-fs.d.ts +17 -0
  82. package/dist/cli/templates/shims/node-fs.js +51 -0
  83. package/dist/cli/templates/shims/throw.d.ts +0 -0
  84. package/dist/cli/templates/shims/{throw.ts → throw.js} +1 -0
  85. package/dist/cli/templates/worker.d.ts +5 -0
  86. package/dist/cli/templates/worker.js +67 -0
  87. package/package.json +29 -12
  88. package/dist/api/chunk-VTBEIZPQ.mjs +0 -32
  89. package/dist/api/get-cloudflare-context.mjs +0 -6
  90. package/dist/api/index.d.mts +0 -1
  91. package/dist/api/index.mjs +0 -6
  92. package/dist/cli/constants/incremental-cache.ts +0 -8
  93. package/dist/cli/index.mjs +0 -7422
  94. package/dist/cli/templates/cache-handler/index.ts +0 -1
  95. package/dist/cli/templates/cache-handler/open-next-cache-handler.ts +0 -148
  96. package/dist/cli/templates/cache-handler/utils.ts +0 -41
  97. package/dist/cli/templates/shims/env.ts +0 -1
  98. package/dist/cli/templates/shims/node-fs.ts +0 -69
  99. package/dist/cli/templates/worker.ts +0 -156
  100. /package/dist/cli/templates/shims/{empty.ts → empty.js} +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.