elit 3.5.1 → 3.5.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 CHANGED
@@ -255,14 +255,14 @@ Useful flags:
255
255
  - `elit native generate android ./src/native-screen.ts --name HomeScreen --package com.example.app`
256
256
  - `elit native generate ios ./src/native-screen.ts --out ./ios/HomeScreen.swift --no-preview`
257
257
  - `elit native generate ir ./src/native-screen.ts --platform android --export screen`
258
- - `elit wapk pack . --password-env WAPK_PASSWORD`
258
+ - `elit wapk pack . --password secret-123`
259
259
  - `elit wapk ./app.wapk --runtime node|bun|deno`
260
- - `elit wapk run ./app.wapk --password-env WAPK_PASSWORD --sync-interval 100 --watcher`
260
+ - `elit wapk run ./app.wapk --password secret-123 --sync-interval 100 --watcher`
261
261
  - `elit wapk pack . --include-deps`
262
- - `elit wapk inspect ./app.wapk --password-env WAPK_PASSWORD`
262
+ - `elit wapk inspect ./app.wapk --password secret-123`
263
263
  - `elit wapk extract ./app.wapk`
264
264
  - `elit desktop wapk ./app.wapk --runtime node|bun|deno --watcher`
265
- - `elit desktop wapk run ./app.wapk --runtime bun --password-env WAPK_PASSWORD`
265
+ - `elit desktop wapk run ./app.wapk --runtime bun --password secret-123`
266
266
 
267
267
  Desktop mode notes:
268
268
 
@@ -308,11 +308,11 @@ WAPK mode notes:
308
308
  - `elit desktop wapk <file.wapk>` and `elit desktop wapk run <file.wapk>` run packaged apps in desktop mode.
309
309
  - During run, the archive is expanded into a temporary work directory and changes are synced back to the same `.wapk` file.
310
310
  - Use `--sync-interval <ms>` for polling mode, or `--watcher` / `--use-watcher` for event-driven sync.
311
- - Use `--password` or, preferably, `--password-env` when packing, inspecting, extracting, or running a locked archive.
311
+ - Use `--password` when packing, inspecting, extracting, or running a locked archive.
312
312
  - `inspect` without credentials still reports whether the archive is locked, but it does not print the archive contents.
313
313
  - Locked archives stay encrypted when live sync writes changes back into the same `.wapk` file.
314
314
  - Configure package metadata in `elit.config.*` under `wapk`, and use `wapk.lock` when you want password-protected archives by default.
315
- - WAPK stays unlocked by default unless `wapk.lock.password`, `wapk.lock.passwordEnv`, `--password`, or `--password-env` is provided.
315
+ - WAPK stays unlocked by default unless `wapk.lock.password` or `--password` is provided.
316
316
  - See [docs/wapk.md](docs/wapk.md) for the full archive guide and `examples/wapk-example` for an end-to-end sample.
317
317
 
318
318
  ## Config File
@@ -388,7 +388,6 @@ The config shape is:
388
388
  desktop?: Record<string, unknown>;
389
389
  lock?: {
390
390
  password?: string;
391
- passwordEnv?: string;
392
391
  };
393
392
  };
394
393
  }
@@ -490,7 +489,7 @@ export default {
490
489
  NODE_ENV: 'production',
491
490
  },
492
491
  lock: {
493
- passwordEnv: 'WAPK_PASSWORD',
492
+ password: 'secret-123',
494
493
  },
495
494
  },
496
495
  };
@@ -511,7 +510,7 @@ Important details:
511
510
  - `desktop` config provides defaults for `elit desktop`, `elit desktop run`, `elit desktop build`, and `elit desktop wapk`. Use `desktop.entry` for hybrid defaults, `desktop.native.entry` for native defaults, and `desktop.mode` to choose which one runs by default.
512
511
  - `mobile` config provides defaults for `elit mobile init|sync|open|run|build`.
513
512
  - `wapk` config is loaded from `elit.config.*`, then package metadata is used as fallback.
514
- - `wapk.lock.passwordEnv` is the safest reusable way to protect archives without putting the password directly into shell history or committed config.
513
+ - `wapk.lock.password` is the config-level default for locked archives. Use `--password` when you want to supply unlock credentials at command time instead of writing them into config.
515
514
  - `wapk run` and `desktop wapk run` sync runtime file changes back into the same `.wapk` archive.
516
515
 
517
516
  ## Browser Patterns
@@ -873,11 +872,11 @@ The package also exports `elit/test`, `elit/test-runtime`, and `elit/test-report
873
872
 
874
873
  Latest release notes live in [CHANGELOG.md](CHANGELOG.md).
875
874
 
876
- Highlights in `v3.5.1`:
875
+ Highlights in `v3.5.2`:
877
876
 
878
- - Added first-class custom WebSocket endpoints for `dev`, `preview`, and `clients[]` config.
879
- - Moved internal HMR and shared-state traffic to `/__elit_ws` so custom endpoints do not collide with Elit internals.
880
- - Tightened cross-runtime WebSocket path matching so root endpoints no longer swallow every upgrade request.
877
+ - Simplified WAPK locking to password-only credentials across config, CLI, and helper APIs.
878
+ - `wapk.lock` now accepts only `password` in `elit.config.*`.
879
+ - `elit wapk` and `elit desktop wapk` now accept only `--password` when opening locked archives.
881
880
 
882
881
  ## Good Defaults For Generated Code
883
882
 
package/dist/cli.d.ts CHANGED
@@ -2,5 +2,12 @@
2
2
  /**
3
3
  * Main CLI for Elit
4
4
  */
5
- export {};
5
+ export declare function runDev(args: string[]): Promise<void>;
6
+ export declare function runBuild(args: string[]): Promise<void>;
7
+ export declare function runPreview(args: string[]): Promise<void>;
8
+ export declare function runTest(args: string[]): Promise<void>;
9
+ export declare function runDesktop(args: string[]): Promise<void>;
10
+ export declare function runMobile(args: string[]): Promise<void>;
11
+ export declare function runNative(args: string[]): Promise<void>;
12
+ export declare function runWapk(args: string[]): Promise<void>;
6
13
  //# sourceMappingURL=cli.d.ts.map
package/dist/cli.d.ts.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"cli.d.ts","sourceRoot":"","sources":["../src/cli.ts"],"names":[],"mappings":";AACA;;GAEG"}
1
+ {"version":3,"file":"cli.d.ts","sourceRoot":"","sources":["../src/cli.ts"],"names":[],"mappings":";AACA;;GAEG;AA6HH,wBAAsB,MAAM,CAAC,IAAI,EAAE,MAAM,EAAE,iBAqD1C;AAED,wBAAsB,QAAQ,CAAC,IAAI,EAAE,MAAM,EAAE,iBA2D5C;AAED,wBAAsB,UAAU,CAAC,IAAI,EAAE,MAAM,EAAE,iBAoF9C;AAED,wBAAsB,OAAO,CAAC,IAAI,EAAE,MAAM,EAAE,iBA8C3C;AAED,wBAAsB,UAAU,CAAC,IAAI,EAAE,MAAM,EAAE,iBAO9C;AAED,wBAAsB,SAAS,CAAC,IAAI,EAAE,MAAM,EAAE,iBAO7C;AAED,wBAAsB,SAAS,CAAC,IAAI,EAAE,MAAM,EAAE,iBAO7C;AAED,wBAAsB,OAAO,CAAC,IAAI,EAAE,MAAM,EAAE,iBAOzC"}
package/dist/cli.js CHANGED
@@ -59400,7 +59400,7 @@ var require_package3 = __commonJS({
59400
59400
  "package.json"(exports2, module2) {
59401
59401
  module2.exports = {
59402
59402
  name: "elit",
59403
- version: "3.5.1",
59403
+ version: "3.5.3",
59404
59404
  description: "Optimized lightweight library for creating DOM elements with reactive state",
59405
59405
  main: "dist/index.js",
59406
59406
  module: "dist/index.mjs",
@@ -59543,6 +59543,11 @@ var require_package3 = __commonJS({
59543
59543
  types: "./dist/types.d.ts",
59544
59544
  import: "./dist/types.mjs",
59545
59545
  require: "./dist/types.js"
59546
+ },
59547
+ "./cli": {
59548
+ types: "./dist/cli.d.ts",
59549
+ import: "./dist/cli.mjs",
59550
+ require: "./dist/cli.js"
59546
59551
  }
59547
59552
  },
59548
59553
  scripts: {
@@ -59626,6 +59631,20 @@ var require_package3 = __commonJS({
59626
59631
  }
59627
59632
  });
59628
59633
 
59634
+ // src/cli.ts
59635
+ var cli_exports = {};
59636
+ __export(cli_exports, {
59637
+ runBuild: () => runBuild,
59638
+ runDesktop: () => runDesktop,
59639
+ runDev: () => runDev,
59640
+ runMobile: () => runMobile,
59641
+ runNative: () => runNative,
59642
+ runPreview: () => runPreview,
59643
+ runTest: () => runTest,
59644
+ runWapk: () => runWapk
59645
+ });
59646
+ module.exports = __toCommonJS(cli_exports);
59647
+
59629
59648
  // src/config.ts
59630
59649
  init_fs();
59631
59650
  init_path();
@@ -74483,14 +74502,12 @@ function normalizeWapkLockConfig(value) {
74483
74502
  if (!isRecord(value)) {
74484
74503
  return void 0;
74485
74504
  }
74486
- const password = typeof value.password === "string" && value.password.length > 0 ? value.password : void 0;
74487
- const passwordEnv = normalizeNonEmptyString(value.passwordEnv);
74488
- if (!password && !passwordEnv) {
74505
+ const password = normalizeNonEmptyString(value.password);
74506
+ if (!password) {
74489
74507
  return void 0;
74490
74508
  }
74491
74509
  return {
74492
- password,
74493
- passwordEnv
74510
+ password
74494
74511
  };
74495
74512
  }
74496
74513
  function normalizeWapkConfig(value) {
@@ -74576,35 +74593,26 @@ function readJsonFile(filePath) {
74576
74593
  return parsed;
74577
74594
  }
74578
74595
  function hasCredentialInput(value) {
74579
- return Boolean(
74580
- typeof value?.password === "string" && value.password.length > 0 || normalizeNonEmptyString(value?.passwordEnv)
74581
- );
74596
+ return Boolean(typeof value?.password === "string" && value.password.length > 0);
74582
74597
  }
74583
- function resolvePasswordFromInput(value, context) {
74598
+ function resolvePasswordFromInput(value) {
74584
74599
  if (!value) {
74585
74600
  return void 0;
74586
74601
  }
74587
74602
  if (typeof value.password === "string" && value.password.length > 0) {
74588
74603
  return value.password;
74589
74604
  }
74590
- const passwordEnv = normalizeNonEmptyString(value.passwordEnv);
74591
- if (!passwordEnv) {
74592
- return void 0;
74593
- }
74594
- const password = process.env[passwordEnv];
74595
- if (typeof password !== "string" || password.length === 0) {
74596
- throw new Error(`${context} requires environment variable "${passwordEnv}" to be set.`);
74597
- }
74598
- return password;
74605
+ return void 0;
74599
74606
  }
74600
74607
  function resolvePackLockCredentials(configLock, overrideLock) {
74601
- const password = resolvePasswordFromInput(overrideLock, "WAPK lock") ?? resolvePasswordFromInput(configLock, "WAPK lock");
74602
- const shouldLock = hasCredentialInput(configLock) || hasCredentialInput(overrideLock);
74608
+ const configPassword = normalizeNonEmptyString(configLock?.password);
74609
+ const password = resolvePasswordFromInput(overrideLock) ?? configPassword;
74610
+ const shouldLock = Boolean(configPassword) || hasCredentialInput(overrideLock);
74603
74611
  if (!shouldLock) {
74604
74612
  return void 0;
74605
74613
  }
74606
74614
  if (!password) {
74607
- throw new Error("WAPK lock requires a password. Provide --password, --password-env, or config.wapk.lock.password/passwordEnv.");
74615
+ throw new Error("WAPK lock requires a password. Provide --password or config.wapk.lock.password.");
74608
74616
  }
74609
74617
  return { password };
74610
74618
  }
@@ -74612,9 +74620,9 @@ function resolveArchiveCredentials(value) {
74612
74620
  if (!hasCredentialInput(value)) {
74613
74621
  return void 0;
74614
74622
  }
74615
- const password = resolvePasswordFromInput(value, "WAPK archive");
74623
+ const password = resolvePasswordFromInput(value);
74616
74624
  if (!password) {
74617
- throw new Error("WAPK archive is password-protected. Provide --password or --password-env to unlock it.");
74625
+ throw new Error("WAPK archive is password-protected. Provide --password to unlock it.");
74618
74626
  }
74619
74627
  return { password };
74620
74628
  }
@@ -74916,7 +74924,7 @@ function decodeWapk(buffer, options = {}) {
74916
74924
  }
74917
74925
  const credentials = resolveArchiveCredentials(options);
74918
74926
  if (!credentials) {
74919
- throw new Error("WAPK archive is password-protected. Provide --password or --password-env to unlock it.");
74927
+ throw new Error("WAPK archive is password-protected. Provide --password to unlock it.");
74920
74928
  }
74921
74929
  return {
74922
74930
  version: envelope.version,
@@ -75261,7 +75269,7 @@ function printWapkHelp() {
75261
75269
  " elit wapk run <file.wapk> --sync-interval 100",
75262
75270
  " elit wapk run <file.wapk> --watcher",
75263
75271
  " elit wapk pack [directory]",
75264
- " elit wapk pack [directory] --password-env WAPK_PASSWORD",
75272
+ " elit wapk pack [directory] --password secret-123",
75265
75273
  " elit wapk pack [directory] --include-deps",
75266
75274
  " elit wapk inspect <file.wapk>",
75267
75275
  " elit wapk extract <file.wapk>",
@@ -75272,7 +75280,6 @@ function printWapkHelp() {
75272
75280
  " --watcher, --use-watcher Use event-driven file watcher instead of polling",
75273
75281
  " --include-deps Include node_modules in the archive",
75274
75282
  " --password <value> Password for locking or unlocking the archive",
75275
- " --password-env <name> Read the password from an environment variable",
75276
75283
  " -h, --help Show this help",
75277
75284
  "",
75278
75285
  "Notes:",
@@ -75294,16 +75301,12 @@ function readRequiredOptionValue(args, index, option) {
75294
75301
  function parseArchiveAccessArgs(args, usage) {
75295
75302
  let file;
75296
75303
  let password;
75297
- let passwordEnv;
75298
75304
  for (let index = 0; index < args.length; index++) {
75299
75305
  const arg = args[index];
75300
75306
  switch (arg) {
75301
75307
  case "--password":
75302
75308
  password = readRequiredOptionValue(args, ++index, "--password");
75303
75309
  break;
75304
- case "--password-env":
75305
- passwordEnv = readRequiredOptionValue(args, ++index, "--password-env");
75306
- break;
75307
75310
  default:
75308
75311
  if (arg.startsWith("-")) {
75309
75312
  throw new Error(`Unknown WAPK option: ${arg}`);
@@ -75318,7 +75321,7 @@ function parseArchiveAccessArgs(args, usage) {
75318
75321
  if (!file) {
75319
75322
  throw new Error(usage);
75320
75323
  }
75321
- return { file, password, passwordEnv };
75324
+ return { file, password };
75322
75325
  }
75323
75326
  function parseRunArgs(args) {
75324
75327
  let file;
@@ -75326,7 +75329,6 @@ function parseRunArgs(args) {
75326
75329
  let syncInterval;
75327
75330
  let useWatcher = false;
75328
75331
  let password;
75329
- let passwordEnv;
75330
75332
  for (let index = 0; index < args.length; index++) {
75331
75333
  const arg = args[index];
75332
75334
  switch (arg) {
@@ -75355,9 +75357,6 @@ function parseRunArgs(args) {
75355
75357
  case "--password":
75356
75358
  password = readRequiredOptionValue(args, ++index, "--password");
75357
75359
  break;
75358
- case "--password-env":
75359
- passwordEnv = readRequiredOptionValue(args, ++index, "--password-env");
75360
- break;
75361
75360
  default:
75362
75361
  if (arg.startsWith("-")) {
75363
75362
  throw new Error(`Unknown WAPK option: ${arg}`);
@@ -75372,13 +75371,12 @@ function parseRunArgs(args) {
75372
75371
  if (!file) {
75373
75372
  throw new Error("Usage: elit wapk run <file.wapk>");
75374
75373
  }
75375
- return { file, runtime: runtime2, syncInterval, useWatcher, password, passwordEnv };
75374
+ return { file, runtime: runtime2, syncInterval, useWatcher, password };
75376
75375
  }
75377
75376
  function parsePackArgs(args) {
75378
75377
  let directory = ".";
75379
75378
  let includeDeps = false;
75380
75379
  let password;
75381
- let passwordEnv;
75382
75380
  for (let index = 0; index < args.length; index++) {
75383
75381
  const arg = args[index];
75384
75382
  if (arg === "--include-deps") {
@@ -75389,10 +75387,6 @@ function parsePackArgs(args) {
75389
75387
  password = readRequiredOptionValue(args, ++index, "--password");
75390
75388
  continue;
75391
75389
  }
75392
- if (arg === "--password-env") {
75393
- passwordEnv = readRequiredOptionValue(args, ++index, "--password-env");
75394
- continue;
75395
- }
75396
75390
  if (arg.startsWith("-")) {
75397
75391
  throw new Error(`Unknown WAPK option: ${arg}`);
75398
75392
  }
@@ -75401,7 +75395,7 @@ function parsePackArgs(args) {
75401
75395
  }
75402
75396
  directory = arg;
75403
75397
  }
75404
- return { directory, includeDeps, password, passwordEnv };
75398
+ return { directory, includeDeps, password };
75405
75399
  }
75406
75400
  async function runWapkCommand(args) {
75407
75401
  if (args.length === 0 || args.includes("--help") || args.includes("-h")) {
@@ -75412,8 +75406,7 @@ async function runWapkCommand(args) {
75412
75406
  const options = parsePackArgs(args.slice(1));
75413
75407
  await packWapkDirectory(options.directory, {
75414
75408
  includeDeps: options.includeDeps,
75415
- password: options.password,
75416
- passwordEnv: options.passwordEnv
75409
+ password: options.password
75417
75410
  });
75418
75411
  return;
75419
75412
  }
@@ -75432,8 +75425,7 @@ async function runWapkCommand(args) {
75432
75425
  runtime: runOptions.runtime,
75433
75426
  syncInterval: runOptions.syncInterval,
75434
75427
  useWatcher: runOptions.useWatcher,
75435
- password: runOptions.password,
75436
- passwordEnv: runOptions.passwordEnv
75428
+ password: runOptions.password
75437
75429
  });
75438
75430
  const exitCode = await runPreparedWapkApp(prepared);
75439
75431
  if (exitCode !== 0) {
@@ -75825,7 +75817,6 @@ function printDesktopHelp() {
75825
75817
  " --sync-interval <ms> Polling interval for live sync (ms, default 300)",
75826
75818
  " --watcher, --use-watcher Use event-driven file watcher instead of polling",
75827
75819
  " --password <value> Password used to unlock a protected archive",
75828
- " --password-env <name> Read the unlock password from an environment variable",
75829
75820
  " --release Use the release desktop runtime binary",
75830
75821
  "",
75831
75822
  "Examples:",
@@ -75864,8 +75855,7 @@ async function runDesktopWapkCommand(args, config) {
75864
75855
  runtime: options.runtime,
75865
75856
  syncInterval: options.syncInterval,
75866
75857
  useWatcher: options.useWatcher,
75867
- password: options.password,
75868
- passwordEnv: options.passwordEnv
75858
+ password: options.password
75869
75859
  });
75870
75860
  const preparedEntry = await createDesktopWapkEntry(preparedApp);
75871
75861
  const liveSync = createWapkLiveSync(preparedApp);
@@ -75928,12 +75918,6 @@ function parseDesktopWapkRunArgs(args, config) {
75928
75918
  throw new Error("--password requires a value.");
75929
75919
  }
75930
75920
  break;
75931
- case "--password-env":
75932
- options.passwordEnv = normalizedArgs[++i];
75933
- if (!options.passwordEnv) {
75934
- throw new Error("--password-env requires a value.");
75935
- }
75936
- break;
75937
75921
  default:
75938
75922
  if (arg.startsWith("-")) {
75939
75923
  throw new Error(`Unknown desktop WAPK option: ${arg}`);
@@ -79428,6 +79412,17 @@ main().catch((error) => {
79428
79412
  console.error("Fatal error:", error);
79429
79413
  process.exit(1);
79430
79414
  });
79415
+ // Annotate the CommonJS export names for ESM import in node:
79416
+ 0 && (module.exports = {
79417
+ runBuild,
79418
+ runDesktop,
79419
+ runDev,
79420
+ runMobile,
79421
+ runNative,
79422
+ runPreview,
79423
+ runTest,
79424
+ runWapk
79425
+ });
79431
79426
  /*! Bundled license information:
79432
79427
 
79433
79428
  reflect-metadata/Reflect.js:
package/dist/config.d.mts CHANGED
@@ -118,10 +118,8 @@ interface DesktopNativeConfig {
118
118
  exportName?: string;
119
119
  }
120
120
  interface WapkLockConfig {
121
- /** Plain-text password used to encrypt the archive (prefer passwordEnv for real projects) */
121
+ /** Plain-text password used to encrypt the archive */
122
122
  password?: string;
123
- /** Environment variable name that contains the archive password */
124
- passwordEnv?: string;
125
123
  }
126
124
  interface WapkConfig {
127
125
  name?: string;
package/dist/config.d.ts CHANGED
@@ -110,10 +110,8 @@ export interface DesktopNativeConfig {
110
110
  exportName?: string;
111
111
  }
112
112
  export interface WapkLockConfig {
113
- /** Plain-text password used to encrypt the archive (prefer passwordEnv for real projects) */
113
+ /** Plain-text password used to encrypt the archive */
114
114
  password?: string;
115
- /** Environment variable name that contains the archive password */
116
- passwordEnv?: string;
117
115
  }
118
116
  export interface WapkConfig {
119
117
  name?: string;
@@ -1 +1 @@
1
- {"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../src/config.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../src/config.ts"],"names":[],"mappings":"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"}