@solcreek/cli 0.4.30 → 0.4.31

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.
@@ -212,12 +212,17 @@ const ADAPTER_VERSION = "^0.2.2";
212
212
  // adapter and imports @prisma/adapter-d1 (an optional peer it doesn't ship).
213
213
  const PRISMA_BSQLITE_PKG = "@prisma/adapter-better-sqlite3";
214
214
  const PRISMA_D1_PKG = "@prisma/adapter-d1";
215
- // Adapter < 0.2.2 resolves its dependencies against paths that don't exist
216
- // under the .creek lazy install (0.2.0: the cache handler; 0.2.1: the
217
- // wrangler bin) npm hoists them to the top of the tree, so the adapter's
218
- // guessed nested paths fail every Next.js build. Installs below this are
219
- // re-installed, not reused.
220
- const ADAPTER_MIN_VERSION = "0.2.2";
215
+ // Minimum adapter the CLI will REUSE from a prior .creek install; older
216
+ // cached copies are force-reinstalled. Each bump tracks a deploy-critical
217
+ // adapter fix that a stale cache would silently miss:
218
+ // 0.2.2 wrangler resolved via module resolution (not a nested .bin guess)
219
+ // 0.2.6 — better-sqlite3 stubbed (else the native module inlines → a ~200MB
220
+ // worker that only fails at upload with "Payload Too Large")
221
+ // 0.2.7 — zero-change Prisma-on-D1 swap
222
+ // 0.2.10 — oversized-bundle fail-fast
223
+ // Kept at the latest because the reinstall cost is trivial and a cached copy
224
+ // in the 0.2.2–0.2.5 window builds successfully but produces a broken worker.
225
+ const ADAPTER_MIN_VERSION = "0.2.10";
221
226
  /**
222
227
  * Merge a dependency into .creek/package.json without clobbering deps that
223
228
  * a previous install (adapter or opennext) may have already written.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@solcreek/cli",
3
- "version": "0.4.30",
3
+ "version": "0.4.31",
4
4
  "description": "CLI for the Creek deployment platform",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",