@concavejs/cli 0.0.1-alpha.10 → 0.0.1-alpha.11

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.
@@ -1,6 +1,6 @@
1
1
  {
2
- "version": "0.0.1-alpha.10",
3
- "generatedAt": "2026-03-03T17:16:30.817Z",
2
+ "version": "0.0.1-alpha.11",
3
+ "generatedAt": "2026-03-04T16:29:53.931Z",
4
4
  "assets": [
5
5
  {
6
6
  "name": "runtime-cf",
@@ -8,11 +8,11 @@
8
8
  "files": [
9
9
  {
10
10
  "path": "runtime.bundle.js",
11
- "size": 1682283,
12
- "hash": "87c1ac2c0ca0e058c3fc98058e375eb6c3971297a22903a23ab344015df2a326"
11
+ "size": 1684827,
12
+ "hash": "f3d4b4ad95efd0fe061ca25281924a2f882969d94cd26286af61727b564177c4"
13
13
  }
14
14
  ],
15
- "hash": "2a46d6c93f9e8f2a4c1150b616cbe61cd3746e10f19193128db0b040cf75c3b9"
15
+ "hash": "5ed62aa4f19979a68ace1b808cd5fe8d90c8ed8f96c805f57e732cc89b4ebe9b"
16
16
  },
17
17
  {
18
18
  "name": "runtime-node",
@@ -20,11 +20,11 @@
20
20
  "files": [
21
21
  {
22
22
  "path": "server/index.js",
23
- "size": 932013,
24
- "hash": "d5d1363a17a2036fe97f9acd760c85239640ddb478b37d29888a58b183a77e7f"
23
+ "size": 933515,
24
+ "hash": "7cb20c1b36673931a6f866b84c75372510f83bf4af67ab152f77d8731cc987d8"
25
25
  }
26
26
  ],
27
- "hash": "59b891c39c284eeca5426b35c3ce60fcaf5995fb8601233f62e374a7e384e64a"
27
+ "hash": "96fa6420b735a515c97d21b13e7dab22b64f13a9295a1779f8d8d987d396eff8"
28
28
  },
29
29
  {
30
30
  "name": "runtime-bun",
@@ -32,11 +32,11 @@
32
32
  "files": [
33
33
  {
34
34
  "path": "server/index.js",
35
- "size": 832646,
36
- "hash": "2d0f923f033c2902940df6f136854ff153d5bf45556ef0cf72a400357ba3cc07"
35
+ "size": 834197,
36
+ "hash": "8d6114c7235bf8f8150c163bc91cd83152d5d24e92fa1b1867c2a43f209f1bef"
37
37
  }
38
38
  ],
39
- "hash": "13b880ee4c22586981ec1167687f81919ea047f33ffeab54cc0f9deb58405ba5"
39
+ "hash": "10518097dafb056f5305975d4ba517ea0b34e1bf79d8a851823894e82df70ed2"
40
40
  },
41
41
  {
42
42
  "name": "dashboard",
@@ -908,11 +908,20 @@ function getPrincipal2() {
908
908
  async function runWithAuth(auth, fn, principal) {
909
909
  return principalContext2.run(principal, () => authContext2.run(auth, fn));
910
910
  }
911
- var authContext2, principalContext2;
911
+ var AUTH_CONTEXT_SYMBOL2, PRINCIPAL_CONTEXT_SYMBOL2, globalAuthContext2, authContext2, principalContext2;
912
912
  var init_auth_context2 = __esm(() => {
913
913
  init_context_storage2();
914
- authContext2 = new ContextStorage2;
915
- principalContext2 = new ContextStorage2;
914
+ AUTH_CONTEXT_SYMBOL2 = Symbol.for("@concavejs/core/auth-context");
915
+ PRINCIPAL_CONTEXT_SYMBOL2 = Symbol.for("@concavejs/core/principal-context");
916
+ globalAuthContext2 = globalThis;
917
+ authContext2 = globalAuthContext2[AUTH_CONTEXT_SYMBOL2] ?? new ContextStorage2;
918
+ principalContext2 = globalAuthContext2[PRINCIPAL_CONTEXT_SYMBOL2] ?? new ContextStorage2;
919
+ if (!globalAuthContext2[AUTH_CONTEXT_SYMBOL2]) {
920
+ globalAuthContext2[AUTH_CONTEXT_SYMBOL2] = authContext2;
921
+ }
922
+ if (!globalAuthContext2[PRINCIPAL_CONTEXT_SYMBOL2]) {
923
+ globalAuthContext2[PRINCIPAL_CONTEXT_SYMBOL2] = principalContext2;
924
+ }
916
925
  });
917
926
 
918
927
  // ../../node_modules/jose/dist/webapi/lib/buffer_utils.js
@@ -11126,12 +11135,24 @@ var init_jwt = __esm2(() => {
11126
11135
  function getPrincipal() {
11127
11136
  return principalContext.getStore();
11128
11137
  }
11138
+ var AUTH_CONTEXT_SYMBOL;
11139
+ var PRINCIPAL_CONTEXT_SYMBOL;
11140
+ var globalAuthContext;
11129
11141
  var authContext;
11130
11142
  var principalContext;
11131
11143
  var init_auth_context = __esm2(() => {
11132
11144
  init_context_storage();
11133
- authContext = new ContextStorage;
11134
- principalContext = new ContextStorage;
11145
+ AUTH_CONTEXT_SYMBOL = Symbol.for("@concavejs/core/auth-context");
11146
+ PRINCIPAL_CONTEXT_SYMBOL = Symbol.for("@concavejs/core/principal-context");
11147
+ globalAuthContext = globalThis;
11148
+ authContext = globalAuthContext[AUTH_CONTEXT_SYMBOL] ?? new ContextStorage;
11149
+ principalContext = globalAuthContext[PRINCIPAL_CONTEXT_SYMBOL] ?? new ContextStorage;
11150
+ if (!globalAuthContext[AUTH_CONTEXT_SYMBOL]) {
11151
+ globalAuthContext[AUTH_CONTEXT_SYMBOL] = authContext;
11152
+ }
11153
+ if (!globalAuthContext[PRINCIPAL_CONTEXT_SYMBOL]) {
11154
+ globalAuthContext[PRINCIPAL_CONTEXT_SYMBOL] = principalContext;
11155
+ }
11135
11156
  });
11136
11157
  function anonymousPrincipal() {
11137
11158
  return { kind: "none", scopes: [] };
@@ -23361,8 +23382,7 @@ class BunHttpHandler extends HttpHandler {
23361
23382
  }
23362
23383
 
23363
23384
  // src/module-loader/fs-module-loader.ts
23364
- import { exists, mkdir as mkdir2, mkdtemp } from "fs/promises";
23365
- import { tmpdir } from "os";
23385
+ import { exists, mkdir as mkdir2 } from "fs/promises";
23366
23386
  import { join as join3 } from "path";
23367
23387
  import { pathToFileURL } from "url";
23368
23388
  import { createHash } from "crypto";
@@ -23409,10 +23429,14 @@ class FsModuleLoaderBase {
23409
23429
  }
23410
23430
  } catch (error) {
23411
23431
  const details = error instanceof Error ? error.stack || error.message : (() => {
23432
+ const str = String(error);
23433
+ if (str && str !== "[object Object]")
23434
+ return str;
23412
23435
  try {
23413
- return JSON.stringify(error, Object.getOwnPropertyNames(error));
23436
+ const json = JSON.stringify(error, Object.getOwnPropertyNames(error));
23437
+ return json !== "{}" ? json : str;
23414
23438
  } catch {
23415
- return String(error);
23439
+ return str;
23416
23440
  }
23417
23441
  })();
23418
23442
  console.error(`[FsModuleLoader] Error loading ${path}: ${details}`);
@@ -23576,7 +23600,8 @@ ${details}` : ""}`);
23576
23600
  }
23577
23601
  async getBundleRootDir() {
23578
23602
  if (!this.bundleRootDirPromise) {
23579
- this.bundleRootDirPromise = mkdtemp(join3(tmpdir(), "concave-bun-loader-"));
23603
+ const bundleDir = join3(this.convexDir, "..", ".concave", "bun-bundles");
23604
+ this.bundleRootDirPromise = mkdir2(bundleDir, { recursive: true }).then(() => bundleDir);
23580
23605
  }
23581
23606
  return this.bundleRootDirPromise;
23582
23607
  }
@@ -24288,10 +24313,14 @@ class FsModuleLoaderBase2 {
24288
24313
  }
24289
24314
  } catch (error) {
24290
24315
  const details = error instanceof Error ? error.stack || error.message : (() => {
24316
+ const str = String(error);
24317
+ if (str && str !== "[object Object]")
24318
+ return str;
24291
24319
  try {
24292
- return JSON.stringify(error, Object.getOwnPropertyNames(error));
24320
+ const json = JSON.stringify(error, Object.getOwnPropertyNames(error));
24321
+ return json !== "{}" ? json : str;
24293
24322
  } catch {
24294
- return String(error);
24323
+ return str;
24295
24324
  }
24296
24325
  })();
24297
24326
  console.error(`[FsModuleLoader] Error loading ${path2}: ${details}`);
@@ -4789,11 +4789,20 @@ async function runWithAuth(auth, fn, principal) {
4789
4789
  function runWithAuthSync(auth, fn, principal) {
4790
4790
  return principalContext.run(principal, () => authContext.run(auth, fn));
4791
4791
  }
4792
- var authContext, principalContext;
4792
+ var AUTH_CONTEXT_SYMBOL, PRINCIPAL_CONTEXT_SYMBOL, globalAuthContext, authContext, principalContext;
4793
4793
  var init_auth_context = __esm(() => {
4794
4794
  init_context_storage();
4795
- authContext = new ContextStorage;
4796
- principalContext = new ContextStorage;
4795
+ AUTH_CONTEXT_SYMBOL = Symbol.for("@concavejs/core/auth-context");
4796
+ PRINCIPAL_CONTEXT_SYMBOL = Symbol.for("@concavejs/core/principal-context");
4797
+ globalAuthContext = globalThis;
4798
+ authContext = globalAuthContext[AUTH_CONTEXT_SYMBOL] ?? new ContextStorage;
4799
+ principalContext = globalAuthContext[PRINCIPAL_CONTEXT_SYMBOL] ?? new ContextStorage;
4800
+ if (!globalAuthContext[AUTH_CONTEXT_SYMBOL]) {
4801
+ globalAuthContext[AUTH_CONTEXT_SYMBOL] = authContext;
4802
+ }
4803
+ if (!globalAuthContext[PRINCIPAL_CONTEXT_SYMBOL]) {
4804
+ globalAuthContext[PRINCIPAL_CONTEXT_SYMBOL] = principalContext;
4805
+ }
4797
4806
  });
4798
4807
 
4799
4808
  // ../core/dist/auth/principal.js
@@ -18649,12 +18658,24 @@ var init_jwt2 = __esm2(() => {
18649
18658
  function getPrincipal2() {
18650
18659
  return principalContext2.getStore();
18651
18660
  }
18661
+ var AUTH_CONTEXT_SYMBOL2;
18662
+ var PRINCIPAL_CONTEXT_SYMBOL2;
18663
+ var globalAuthContext2;
18652
18664
  var authContext2;
18653
18665
  var principalContext2;
18654
18666
  var init_auth_context2 = __esm2(() => {
18655
18667
  init_context_storage2();
18656
- authContext2 = new ContextStorage2;
18657
- principalContext2 = new ContextStorage2;
18668
+ AUTH_CONTEXT_SYMBOL2 = Symbol.for("@concavejs/core/auth-context");
18669
+ PRINCIPAL_CONTEXT_SYMBOL2 = Symbol.for("@concavejs/core/principal-context");
18670
+ globalAuthContext2 = globalThis;
18671
+ authContext2 = globalAuthContext2[AUTH_CONTEXT_SYMBOL2] ?? new ContextStorage2;
18672
+ principalContext2 = globalAuthContext2[PRINCIPAL_CONTEXT_SYMBOL2] ?? new ContextStorage2;
18673
+ if (!globalAuthContext2[AUTH_CONTEXT_SYMBOL2]) {
18674
+ globalAuthContext2[AUTH_CONTEXT_SYMBOL2] = authContext2;
18675
+ }
18676
+ if (!globalAuthContext2[PRINCIPAL_CONTEXT_SYMBOL2]) {
18677
+ globalAuthContext2[PRINCIPAL_CONTEXT_SYMBOL2] = principalContext2;
18678
+ }
18658
18679
  });
18659
18680
  function anonymousPrincipal2() {
18660
18681
  return { kind: "none", scopes: [] };
@@ -26346,10 +26367,14 @@ class FsModuleLoaderBase {
26346
26367
  }
26347
26368
  } catch (error) {
26348
26369
  const details = error instanceof Error ? error.stack || error.message : (() => {
26370
+ const str = String(error);
26371
+ if (str && str !== "[object Object]")
26372
+ return str;
26349
26373
  try {
26350
- return JSON.stringify(error, Object.getOwnPropertyNames(error));
26374
+ const json = JSON.stringify(error, Object.getOwnPropertyNames(error));
26375
+ return json !== "{}" ? json : str;
26351
26376
  } catch {
26352
- return String(error);
26377
+ return str;
26353
26378
  }
26354
26379
  })();
26355
26380
  console.error(`[FsModuleLoader] Error loading ${path}: ${details}`);
@@ -31386,12 +31411,24 @@ var init_jwt3 = __esm3(() => {
31386
31411
  function getPrincipal3() {
31387
31412
  return principalContext3.getStore();
31388
31413
  }
31414
+ var AUTH_CONTEXT_SYMBOL3;
31415
+ var PRINCIPAL_CONTEXT_SYMBOL3;
31416
+ var globalAuthContext3;
31389
31417
  var authContext3;
31390
31418
  var principalContext3;
31391
31419
  var init_auth_context3 = __esm3(() => {
31392
31420
  init_context_storage3();
31393
- authContext3 = new ContextStorage3;
31394
- principalContext3 = new ContextStorage3;
31421
+ AUTH_CONTEXT_SYMBOL3 = Symbol.for("@concavejs/core/auth-context");
31422
+ PRINCIPAL_CONTEXT_SYMBOL3 = Symbol.for("@concavejs/core/principal-context");
31423
+ globalAuthContext3 = globalThis;
31424
+ authContext3 = globalAuthContext3[AUTH_CONTEXT_SYMBOL3] ?? new ContextStorage3;
31425
+ principalContext3 = globalAuthContext3[PRINCIPAL_CONTEXT_SYMBOL3] ?? new ContextStorage3;
31426
+ if (!globalAuthContext3[AUTH_CONTEXT_SYMBOL3]) {
31427
+ globalAuthContext3[AUTH_CONTEXT_SYMBOL3] = authContext3;
31428
+ }
31429
+ if (!globalAuthContext3[PRINCIPAL_CONTEXT_SYMBOL3]) {
31430
+ globalAuthContext3[PRINCIPAL_CONTEXT_SYMBOL3] = principalContext3;
31431
+ }
31395
31432
  });
31396
31433
  function anonymousPrincipal3() {
31397
31434
  return { kind: "none", scopes: [] };
@@ -41086,12 +41123,24 @@ var init_jwt4 = __esm4(() => {
41086
41123
  function getPrincipal4() {
41087
41124
  return principalContext4.getStore();
41088
41125
  }
41126
+ var AUTH_CONTEXT_SYMBOL4;
41127
+ var PRINCIPAL_CONTEXT_SYMBOL4;
41128
+ var globalAuthContext4;
41089
41129
  var authContext4;
41090
41130
  var principalContext4;
41091
41131
  var init_auth_context4 = __esm4(() => {
41092
41132
  init_context_storage4();
41093
- authContext4 = new ContextStorage4;
41094
- principalContext4 = new ContextStorage4;
41133
+ AUTH_CONTEXT_SYMBOL4 = Symbol.for("@concavejs/core/auth-context");
41134
+ PRINCIPAL_CONTEXT_SYMBOL4 = Symbol.for("@concavejs/core/principal-context");
41135
+ globalAuthContext4 = globalThis;
41136
+ authContext4 = globalAuthContext4[AUTH_CONTEXT_SYMBOL4] ?? new ContextStorage4;
41137
+ principalContext4 = globalAuthContext4[PRINCIPAL_CONTEXT_SYMBOL4] ?? new ContextStorage4;
41138
+ if (!globalAuthContext4[AUTH_CONTEXT_SYMBOL4]) {
41139
+ globalAuthContext4[AUTH_CONTEXT_SYMBOL4] = authContext4;
41140
+ }
41141
+ if (!globalAuthContext4[PRINCIPAL_CONTEXT_SYMBOL4]) {
41142
+ globalAuthContext4[PRINCIPAL_CONTEXT_SYMBOL4] = principalContext4;
41143
+ }
41095
41144
  });
41096
41145
  function anonymousPrincipal4() {
41097
41146
  return { kind: "none", scopes: [] };
@@ -3770,11 +3770,20 @@ function getPrincipal() {
3770
3770
  async function runWithAuth(auth, fn, principal) {
3771
3771
  return principalContext.run(principal, () => authContext.run(auth, fn));
3772
3772
  }
3773
- var authContext, principalContext;
3773
+ var AUTH_CONTEXT_SYMBOL, PRINCIPAL_CONTEXT_SYMBOL, globalAuthContext, authContext, principalContext;
3774
3774
  var init_auth_context = __esm(() => {
3775
3775
  init_context_storage();
3776
- authContext = new ContextStorage;
3777
- principalContext = new ContextStorage;
3776
+ AUTH_CONTEXT_SYMBOL = Symbol.for("@concavejs/core/auth-context");
3777
+ PRINCIPAL_CONTEXT_SYMBOL = Symbol.for("@concavejs/core/principal-context");
3778
+ globalAuthContext = globalThis;
3779
+ authContext = globalAuthContext[AUTH_CONTEXT_SYMBOL] ?? new ContextStorage;
3780
+ principalContext = globalAuthContext[PRINCIPAL_CONTEXT_SYMBOL] ?? new ContextStorage;
3781
+ if (!globalAuthContext[AUTH_CONTEXT_SYMBOL]) {
3782
+ globalAuthContext[AUTH_CONTEXT_SYMBOL] = authContext;
3783
+ }
3784
+ if (!globalAuthContext[PRINCIPAL_CONTEXT_SYMBOL]) {
3785
+ globalAuthContext[PRINCIPAL_CONTEXT_SYMBOL] = principalContext;
3786
+ }
3778
3787
  });
3779
3788
 
3780
3789
  // ../../node_modules/jose/dist/webapi/lib/buffer_utils.js
@@ -17269,7 +17278,7 @@ var __defProp11, __returnValue2 = (v2) => v2, __export2 = (target, all) => {
17269
17278
  return audOption.some(Set.prototype.has.bind(new Set(audPayload)));
17270
17279
  }
17271
17280
  return false;
17272
- }, init_jwt_claims_set2, init_verify42, init_local2, USER_AGENT2, customFetch2, jwksCache2, init_remote2, init_webapi2, JWTValidationError2, AdminAuthError2, SystemAuthError2, DEFAULT_CLOCK_TOLERANCE_SECONDS2 = 60, DEFAULT_JWKS_CACHE_TTL_MS2, MAX_JWKS_CACHE_TTL_MS2, JWKS_CACHE2, init_jwt2, authContext2, principalContext2, init_auth_context2, MANAGEMENT_CAPABILITIES2, init_auth_resolver2, ALLOWED2, defaultAuthorizationPolicy2, init_authorization_policy2, init_auth_config_service2, init_auth2, init_internal2, exports_system_functions_module2, systemFunctions2, init_system_functions_module2, exports_module_loader2, MODULE_STATE_SYMBOL2, MODULE_LOADER_METADATA_SYMBOL2, MODULE_REGISTRY_CONTEXT2, builtInSystemFunctionsModulePromise2, browserConvexFunctionsAllowed2 = false, init_module_loader2, ValidatorError2, init_validator22, ALPHABET2 = "0123456789abcdefghjkmnpqrstvwxyz", ALPHABET_MAP2, init_base322, weakRandomState2, init_crypto2, INTERNAL_ID_LENGTH2 = 16, MIN_ENCODED_LENGTH2 = 31, MAX_ENCODED_LENGTH2 = 37, init_document_id2, Order2, SEARCH_INDEXES_FTS_SCHEMA2 = `
17281
+ }, init_jwt_claims_set2, init_verify42, init_local2, USER_AGENT2, customFetch2, jwksCache2, init_remote2, init_webapi2, JWTValidationError2, AdminAuthError2, SystemAuthError2, DEFAULT_CLOCK_TOLERANCE_SECONDS2 = 60, DEFAULT_JWKS_CACHE_TTL_MS2, MAX_JWKS_CACHE_TTL_MS2, JWKS_CACHE2, init_jwt2, AUTH_CONTEXT_SYMBOL2, PRINCIPAL_CONTEXT_SYMBOL2, globalAuthContext2, authContext2, principalContext2, init_auth_context2, MANAGEMENT_CAPABILITIES2, init_auth_resolver2, ALLOWED2, defaultAuthorizationPolicy2, init_authorization_policy2, init_auth_config_service2, init_auth2, init_internal2, exports_system_functions_module2, systemFunctions2, init_system_functions_module2, exports_module_loader2, MODULE_STATE_SYMBOL2, MODULE_LOADER_METADATA_SYMBOL2, MODULE_REGISTRY_CONTEXT2, builtInSystemFunctionsModulePromise2, browserConvexFunctionsAllowed2 = false, init_module_loader2, ValidatorError2, init_validator22, ALPHABET2 = "0123456789abcdefghjkmnpqrstvwxyz", ALPHABET_MAP2, init_base322, weakRandomState2, init_crypto2, INTERNAL_ID_LENGTH2 = 16, MIN_ENCODED_LENGTH2 = 31, MAX_ENCODED_LENGTH2 = 37, init_document_id2, Order2, SEARCH_INDEXES_FTS_SCHEMA2 = `
17273
17282
  CREATE VIRTUAL TABLE IF NOT EXISTS search_indexes USING fts5(
17274
17283
  index_id UNINDEXED,
17275
17284
  document_id UNINDEXED,
@@ -18508,8 +18517,17 @@ var init_dist = __esm(() => {
18508
18517
  });
18509
18518
  init_auth_context2 = __esm2(() => {
18510
18519
  init_context_storage2();
18511
- authContext2 = new ContextStorage2;
18512
- principalContext2 = new ContextStorage2;
18520
+ AUTH_CONTEXT_SYMBOL2 = Symbol.for("@concavejs/core/auth-context");
18521
+ PRINCIPAL_CONTEXT_SYMBOL2 = Symbol.for("@concavejs/core/principal-context");
18522
+ globalAuthContext2 = globalThis;
18523
+ authContext2 = globalAuthContext2[AUTH_CONTEXT_SYMBOL2] ?? new ContextStorage2;
18524
+ principalContext2 = globalAuthContext2[PRINCIPAL_CONTEXT_SYMBOL2] ?? new ContextStorage2;
18525
+ if (!globalAuthContext2[AUTH_CONTEXT_SYMBOL2]) {
18526
+ globalAuthContext2[AUTH_CONTEXT_SYMBOL2] = authContext2;
18527
+ }
18528
+ if (!globalAuthContext2[PRINCIPAL_CONTEXT_SYMBOL2]) {
18529
+ globalAuthContext2[PRINCIPAL_CONTEXT_SYMBOL2] = principalContext2;
18530
+ }
18513
18531
  });
18514
18532
  init_auth_resolver2 = __esm2(() => {
18515
18533
  init_jwt2();
@@ -26111,10 +26129,14 @@ class FsModuleLoaderBase {
26111
26129
  }
26112
26130
  } catch (error) {
26113
26131
  const details = error instanceof Error ? error.stack || error.message : (() => {
26132
+ const str = String(error);
26133
+ if (str && str !== "[object Object]")
26134
+ return str;
26114
26135
  try {
26115
- return JSON.stringify(error, Object.getOwnPropertyNames(error));
26136
+ const json = JSON.stringify(error, Object.getOwnPropertyNames(error));
26137
+ return json !== "{}" ? json : str;
26116
26138
  } catch {
26117
- return String(error);
26139
+ return str;
26118
26140
  }
26119
26141
  })();
26120
26142
  console.error(`[FsModuleLoader] Error loading ${path}: ${details}`);
@@ -26963,10 +26985,14 @@ class FsModuleLoaderBase2 {
26963
26985
  }
26964
26986
  } catch (error) {
26965
26987
  const details = error instanceof Error ? error.stack || error.message : (() => {
26988
+ const str = String(error);
26989
+ if (str && str !== "[object Object]")
26990
+ return str;
26966
26991
  try {
26967
- return JSON.stringify(error, Object.getOwnPropertyNames(error));
26992
+ const json = JSON.stringify(error, Object.getOwnPropertyNames(error));
26993
+ return json !== "{}" ? json : str;
26968
26994
  } catch {
26969
- return String(error);
26995
+ return str;
26970
26996
  }
26971
26997
  })();
26972
26998
  console.error(`[FsModuleLoader] Error loading ${path2}: ${details}`);
package/dist/cli.js CHANGED
@@ -10682,7 +10682,7 @@ function setupAuthEnvironment(keys, siteUrl, options = {}) {
10682
10682
  setEnv("AUTH_SKIP_VERIFICATION", "true");
10683
10683
  }
10684
10684
  // package.json
10685
- var version = "0.0.1-alpha.10";
10685
+ var version = "0.0.1-alpha.11";
10686
10686
 
10687
10687
  // src/cli/cli.ts
10688
10688
  var WATCH_IGNORE_PATTERNS = [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@concavejs/cli",
3
- "version": "0.0.1-alpha.10",
3
+ "version": "0.0.1-alpha.11",
4
4
  "license": "FSL-1.1-Apache-2.0",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -26,9 +26,9 @@
26
26
  "tsx": "^4.19.2"
27
27
  },
28
28
  "devDependencies": {
29
- "@concavejs/runtime-cf": "0.0.1-alpha.10",
30
- "@concavejs/runtime-bun": "0.0.1-alpha.10",
31
- "@concavejs/runtime-node": "0.0.1-alpha.10",
29
+ "@concavejs/runtime-cf": "0.0.1-alpha.11",
30
+ "@concavejs/runtime-bun": "0.0.1-alpha.11",
31
+ "@concavejs/runtime-node": "0.0.1-alpha.11",
32
32
  "@types/node": "^24.9.1"
33
33
  },
34
34
  "peerDependencies": {