@solcreek/adapter-creek 0.1.1 → 0.1.3
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 +8 -2
- package/dist/bundler.js +41 -734
- package/dist/cache-handler.d.ts +1 -31
- package/dist/cache-handler.js +8 -98
- package/dist/index.js +25 -222
- package/dist/worker-entry.js +10 -1
- package/package.json +3 -2
- package/src/shims/net.js +44 -0
package/README.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# adapter-creek
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/@solcreek/adapter-creek)
|
|
4
|
+
[](https://github.com/solcreek/adapter-creek/actions/workflows/checks.yml)
|
|
5
|
+
[](https://github.com/solcreek/adapter-creek/actions/workflows/test-e2e-deploy.yml)
|
|
6
|
+
[](https://nextjs.org/docs/app/api-reference/adapters)
|
|
7
|
+
[](./LICENSE)
|
|
8
|
+
|
|
3
9
|
Next.js deployment adapter for [Creek](https://creek.dev).
|
|
4
10
|
|
|
5
11
|
## What is Creek?
|
|
@@ -36,7 +42,7 @@ Creek is a **platform** — this adapter is the bridge between Next.js and that
|
|
|
36
42
|
|
|
37
43
|
## Status
|
|
38
44
|
|
|
39
|
-
|
|
45
|
+
Full Next.js coverage on Cloudflare Workers — zero adapter-specific skips. The `test/deploy-tests-manifest.adapter-creek.json` file is empty; every test that runs against other adapters also runs (and passes) here.
|
|
40
46
|
|
|
41
47
|
| Feature | Status |
|
|
42
48
|
|---------|:------:|
|
|
@@ -50,7 +56,7 @@ Near-complete Next.js coverage on Cloudflare Workers. Single entry in the skip m
|
|
|
50
56
|
| `@vercel/og` (node + edge) | ✅ WASM-path |
|
|
51
57
|
| `sqlite3` native-addon packages | ✅ transparent sql.js shim |
|
|
52
58
|
| Multi-runtime isolation (opt-in) | ✅ `CREEK_MULTI_WORKER=1` |
|
|
53
|
-
| Next.js e2e deploy suite |
|
|
59
|
+
| Next.js e2e deploy suite | ✅ 100% of in-scope tests (full matrix green) |
|
|
54
60
|
|
|
55
61
|
## Requirements
|
|
56
62
|
|