@open-mercato/cli 0.6.4-canary.3992.1.0f76b3b18e → 0.6.4-develop.3921.1.8a42ddf4c8
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/.turbo/turbo-build.log +1 -1
- package/dist/lib/testing/integration.js +0 -14
- package/dist/lib/testing/integration.js.map +2 -2
- package/dist/mercato.js +101 -239
- package/dist/mercato.js.map +2 -2
- package/package.json +6 -6
- package/src/__tests__/mercato.test.ts +3 -12
- package/src/lib/__tests__/dev-env-reload.test.ts +3 -5
- package/src/lib/testing/integration.ts +0 -14
- package/src/mercato.ts +70 -236
- package/dist/lib/generate-watch-structure.js +0 -153
- package/dist/lib/generate-watch-structure.js.map +0 -7
- package/src/lib/__tests__/generate-watch-structure.test.ts +0 -80
- package/src/lib/generate-watch-structure.ts +0 -170
package/.turbo/turbo-build.log
CHANGED
|
@@ -2345,20 +2345,6 @@ async function startEphemeralEnvironment(options) {
|
|
|
2345
2345
|
TENANT_DATA_ENCRYPTION_FALLBACK_KEY: process.env.TENANT_DATA_ENCRYPTION_FALLBACK_KEY ?? "om-ephemeral-integration-fallback-key",
|
|
2346
2346
|
AUTO_SPAWN_WORKERS: process.env.AUTO_SPAWN_WORKERS ?? "true",
|
|
2347
2347
|
AUTO_SPAWN_SCHEDULER: "false",
|
|
2348
|
-
// Hide the demo feedback floating action button — it lives at
|
|
2349
|
-
// `fixed bottom-6 right-6 z-banner` and consistently intercepts pointer
|
|
2350
|
-
// events on row-action menus and other bottom-of-viewport UI elements
|
|
2351
|
-
// (e.g. TC-WF-006 Delete menuitem click). The widget is already gated
|
|
2352
|
-
// on `DEMO_MODE !== 'false'` in the backend layout, so opting out here
|
|
2353
|
-
// only affects the integration test runtime — dev + prod stay unchanged.
|
|
2354
|
-
DEMO_MODE: "false",
|
|
2355
|
-
// Disable the feature-toggle resolution cache. Tests flip overrides
|
|
2356
|
-
// (e.g. example_customers_sync enabled/bidirectional) between cases; the
|
|
2357
|
-
// 1-minute resolution cache can serve a stale value across set/clear
|
|
2358
|
-
// under fast churn, which made the example.todo.* persistent subscribers
|
|
2359
|
-
// skip enqueueing inbound sync jobs (TC-CRM-028 inbound trio flake).
|
|
2360
|
-
// Fresh DB reads make flag-gated sync deterministic in tests only.
|
|
2361
|
-
OM_FEATURE_TOGGLES_CACHE_DISABLED: "1",
|
|
2362
2348
|
OM_CLI_QUIET: "1",
|
|
2363
2349
|
MERCATO_QUIET: "1",
|
|
2364
2350
|
QUEUE_BASE_DIR: EPHEMERAL_QUEUE_BASE_DIR,
|