@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.
- package/README.md +48 -38
- package/dist/api/{get-cloudflare-context.d.mts → get-cloudflare-context.d.ts} +4 -4
- package/dist/api/get-cloudflare-context.js +39 -0
- package/dist/api/index.d.ts +1 -0
- package/dist/api/index.js +1 -0
- package/dist/api/kvCache.d.ts +27 -0
- package/dist/api/kvCache.js +121 -0
- package/dist/cli/args.d.ts +5 -0
- package/dist/cli/args.js +48 -0
- package/dist/cli/build/bundle-server.d.ts +6 -0
- package/dist/cli/build/bundle-server.js +188 -0
- package/dist/cli/build/index.d.ts +9 -0
- package/dist/cli/build/index.js +123 -0
- package/dist/cli/build/open-next/compile-env-files.d.ts +5 -0
- package/dist/cli/build/open-next/compile-env-files.js +9 -0
- package/dist/cli/build/open-next/copyCacheAssets.d.ts +2 -0
- package/dist/cli/build/open-next/copyCacheAssets.js +10 -0
- package/dist/cli/build/open-next/createServerBundle.d.ts +2 -0
- package/dist/cli/build/open-next/createServerBundle.js +216 -0
- package/dist/cli/build/patches/index.d.ts +2 -0
- package/dist/cli/build/patches/index.js +2 -0
- package/dist/cli/build/patches/investigated/copy-package-cli-files.d.ts +6 -0
- package/dist/cli/build/patches/investigated/copy-package-cli-files.js +12 -0
- package/dist/cli/build/patches/investigated/index.d.ts +4 -0
- package/dist/cli/build/patches/investigated/index.js +4 -0
- package/dist/cli/build/patches/investigated/patch-cache.d.ts +13 -0
- package/dist/cli/build/patches/investigated/patch-cache.js +22 -0
- package/dist/cli/build/patches/investigated/patch-require.d.ts +7 -0
- package/dist/cli/build/patches/investigated/patch-require.js +9 -0
- package/dist/cli/build/patches/investigated/update-webpack-chunks-file/get-chunk-installation-identifiers.d.ts +13 -0
- package/dist/cli/build/patches/investigated/update-webpack-chunks-file/get-chunk-installation-identifiers.js +82 -0
- package/dist/cli/build/patches/investigated/update-webpack-chunks-file/get-chunk-installation-identifiers.test.d.ts +1 -0
- package/dist/cli/build/patches/investigated/update-webpack-chunks-file/get-chunk-installation-identifiers.test.js +20 -0
- package/dist/cli/build/patches/investigated/update-webpack-chunks-file/get-file-content-with-updated-webpack-f-require-code.d.ts +19 -0
- package/dist/cli/build/patches/investigated/update-webpack-chunks-file/get-file-content-with-updated-webpack-f-require-code.js +76 -0
- package/dist/cli/build/patches/investigated/update-webpack-chunks-file/get-file-content-with-updated-webpack-f-require-code.test.d.ts +1 -0
- package/dist/cli/build/patches/investigated/update-webpack-chunks-file/get-file-content-with-updated-webpack-f-require-code.test.js +23 -0
- package/dist/cli/build/patches/investigated/update-webpack-chunks-file/get-updated-webpack-chunks-file-content.d.ts +14 -0
- package/dist/cli/build/patches/investigated/update-webpack-chunks-file/get-updated-webpack-chunks-file-content.js +22 -0
- package/dist/cli/build/patches/investigated/update-webpack-chunks-file/get-updated-webpack-chunks-file-content.test.d.ts +1 -0
- package/dist/cli/build/patches/investigated/update-webpack-chunks-file/get-updated-webpack-chunks-file-content.test.js +15 -0
- package/dist/cli/build/patches/investigated/update-webpack-chunks-file/index.d.ts +8 -0
- package/dist/cli/build/patches/investigated/update-webpack-chunks-file/index.js +22 -0
- package/dist/cli/build/patches/to-investigate/index.d.ts +8 -0
- package/dist/cli/build/patches/to-investigate/index.js +8 -0
- package/dist/cli/build/patches/to-investigate/inline-eval-manifest.d.ts +9 -0
- package/dist/cli/build/patches/to-investigate/inline-eval-manifest.js +32 -0
- package/dist/cli/build/patches/to-investigate/inline-middleware-manifest-require.d.ts +6 -0
- package/dist/cli/build/patches/to-investigate/inline-middleware-manifest-require.js +13 -0
- package/dist/cli/build/patches/to-investigate/inline-next-require.d.ts +6 -0
- package/dist/cli/build/patches/to-investigate/inline-next-require.js +36 -0
- package/dist/cli/build/patches/to-investigate/patch-exception-bubbling.d.ts +7 -0
- package/dist/cli/build/patches/to-investigate/patch-exception-bubbling.js +9 -0
- package/dist/cli/build/patches/to-investigate/patch-find-dir.d.ts +8 -0
- package/dist/cli/build/patches/to-investigate/patch-find-dir.js +21 -0
- package/dist/cli/build/patches/to-investigate/patch-load-instrumentation-module.d.ts +14 -0
- package/dist/cli/build/patches/to-investigate/patch-load-instrumentation-module.js +34 -0
- package/dist/cli/build/patches/to-investigate/patch-read-file.d.ts +3 -0
- package/dist/cli/build/patches/to-investigate/patch-read-file.js +29 -0
- package/dist/cli/build/patches/to-investigate/wrangler-deps.d.ts +2 -0
- package/dist/cli/build/patches/to-investigate/wrangler-deps.js +54 -0
- package/dist/cli/build/utils/extract-project-env-vars.d.ts +18 -0
- package/dist/cli/build/utils/extract-project-env-vars.js +32 -0
- package/dist/cli/build/utils/extract-project-env-vars.spec.d.ts +1 -0
- package/dist/cli/build/utils/extract-project-env-vars.spec.js +57 -0
- package/dist/cli/build/utils/index.d.ts +3 -0
- package/dist/cli/build/utils/index.js +3 -0
- package/dist/cli/build/utils/normalize-path.d.ts +1 -0
- package/dist/cli/build/utils/normalize-path.js +4 -0
- package/dist/cli/build/utils/read-paths-recursively.d.ts +7 -0
- package/dist/cli/build/utils/read-paths-recursively.js +20 -0
- package/dist/cli/build/utils/ts-parse-file.d.ts +8 -0
- package/dist/cli/build/utils/ts-parse-file.js +12 -0
- package/dist/cli/config.d.ts +41 -0
- package/dist/cli/config.js +92 -0
- package/dist/cli/index.d.ts +2 -0
- package/dist/cli/index.js +12 -0
- package/dist/cli/templates/shims/empty.d.ts +2 -0
- package/dist/cli/templates/shims/env.d.ts +1 -0
- package/dist/cli/templates/shims/env.js +1 -0
- package/dist/cli/templates/shims/node-fs.d.ts +17 -0
- package/dist/cli/templates/shims/node-fs.js +51 -0
- package/dist/cli/templates/shims/throw.d.ts +0 -0
- package/dist/cli/templates/shims/{throw.ts → throw.js} +1 -0
- package/dist/cli/templates/worker.d.ts +5 -0
- package/dist/cli/templates/worker.js +67 -0
- package/package.json +29 -12
- package/dist/api/chunk-VTBEIZPQ.mjs +0 -32
- package/dist/api/get-cloudflare-context.mjs +0 -6
- package/dist/api/index.d.mts +0 -1
- package/dist/api/index.mjs +0 -6
- package/dist/cli/constants/incremental-cache.ts +0 -8
- package/dist/cli/index.mjs +0 -7422
- package/dist/cli/templates/cache-handler/index.ts +0 -1
- package/dist/cli/templates/cache-handler/open-next-cache-handler.ts +0 -148
- package/dist/cli/templates/cache-handler/utils.ts +0 -41
- package/dist/cli/templates/shims/env.ts +0 -1
- package/dist/cli/templates/shims/node-fs.ts +0 -69
- package/dist/cli/templates/worker.ts +0 -156
- /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.