@absolutejs/absolute 0.19.0-beta.1018 → 0.19.0-beta.1019

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,7 +1,7 @@
1
1
  // @bun
2
2
  var __require = import.meta.require;
3
3
 
4
- // .angular-partial-tmp-Z9cr7t/src/core/streamingSlotRegistrar.ts
4
+ // .angular-partial-tmp-cSpZHM/src/core/streamingSlotRegistrar.ts
5
5
  var STREAMING_SLOT_REGISTRAR_KEY = Symbol.for("absolutejs.streamingSlotRegistrar");
6
6
  var STREAMING_SLOT_WARNING_STORAGE_KEY = Symbol.for("absolutejs.streamingSlotWarningController");
7
7
  var STREAMING_SLOT_COLLECTION_STORAGE_KEY = Symbol.for("absolutejs.streamingSlotCollectionController");
@@ -1,7 +1,7 @@
1
1
  // @bun
2
2
  var __require = import.meta.require;
3
3
 
4
- // .angular-partial-tmp-Z9cr7t/src/core/streamingSlotRegistrar.ts
4
+ // .angular-partial-tmp-cSpZHM/src/core/streamingSlotRegistrar.ts
5
5
  var STREAMING_SLOT_REGISTRAR_KEY = Symbol.for("absolutejs.streamingSlotRegistrar");
6
6
  var STREAMING_SLOT_WARNING_STORAGE_KEY = Symbol.for("absolutejs.streamingSlotWarningController");
7
7
  var STREAMING_SLOT_COLLECTION_STORAGE_KEY = Symbol.for("absolutejs.streamingSlotCollectionController");
@@ -48,7 +48,7 @@ var warnMissingStreamingSlotCollector = (primitiveName) => {
48
48
  getWarningController()?.maybeWarn(primitiveName);
49
49
  };
50
50
 
51
- // .angular-partial-tmp-Z9cr7t/src/core/streamingSlotRegistry.ts
51
+ // .angular-partial-tmp-cSpZHM/src/core/streamingSlotRegistry.ts
52
52
  var STREAMING_SLOT_STORAGE_KEY = Symbol.for("absolutejs.streamingSlotAsyncLocalStorage");
53
53
  var isObjectRecord2 = (value) => Boolean(value) && typeof value === "object";
54
54
  var isAsyncLocalStorage = (value) => isObjectRecord2(value) && ("getStore" in value) && typeof value.getStore === "function" && ("run" in value) && typeof value.run === "function";
package/dist/cli/index.js CHANGED
@@ -6717,7 +6717,7 @@ if (command === "dev") {
6717
6717
  } else if (command === "prettier") {
6718
6718
  sendTelemetryEvent("cli:command", { command });
6719
6719
  await prettier(args);
6720
- } else if (command === "ls" || command === "list" || command === "ps") {
6720
+ } else if (command === "ls" || command === "ps") {
6721
6721
  sendTelemetryEvent("cli:command", { command: "ls" });
6722
6722
  const { runList: runList2 } = await Promise.resolve().then(() => (init_list(), exports_list));
6723
6723
  await runList2(args);
@@ -6758,7 +6758,7 @@ if (command === "dev") {
6758
6758
  console.error(" config [--port n] Open the unified config UI (ESLint, tsconfig, Prettier)");
6759
6759
  console.error(" eslint Run ESLint (cached)");
6760
6760
  console.error(" info Print system info for bug reports");
6761
- console.error(" ls [--watch] [--json] List/manage running servers (alias: list)");
6761
+ console.error(" ls [--watch] [--json] List/manage running servers (alias: ps)");
6762
6762
  console.error(" prettier Run Prettier check (cached)");
6763
6763
  console.error(" typecheck Run type checkers for all frameworks");
6764
6764
  console.error(" telemetry Manage anonymous telemetry");
package/package.json CHANGED
@@ -349,6 +349,7 @@
349
349
  "dev": "TELEMETRY_OFF=1 bun run src/cli/index.ts dev example/server.ts --config example/absolute.config.ts",
350
350
  "format": "bun run src/cli/index.ts prettier --write",
351
351
  "lint": "bun run src/cli/index.ts eslint",
352
+ "ls": "bun run src/cli/index.ts ls",
352
353
  "release": "bun run test && bun run format && bun run build:native && bun run build && ./native/publish.sh && bun publish",
353
354
  "release:beta": "bun run test && bun run format && bun run build:native && bun run build && ./native/publish.sh --tag beta && bun publish --tag beta",
354
355
  "start": "TELEMETRY_OFF=1 bun run src/cli/index.ts start example/server.ts --outdir example/dist --config example/absolute.config.ts",
@@ -400,5 +401,5 @@
400
401
  ]
401
402
  }
402
403
  },
403
- "version": "0.19.0-beta.1018"
404
+ "version": "0.19.0-beta.1019"
404
405
  }