limina 0.1.2 → 0.1.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.
@@ -1,5 +1,4 @@
1
- import { a as SPINNER_FRAMES, l as hasRunningSnapshotWork, n as TerminalFrameTracker, o as SPINNER_INTERVAL_MS, t as DEFAULT_TERMINAL_COLUMNS, u as renderSnapshotLinesForTerminal } from "./chunks/dep-mnWOqiGN.js";
2
-
1
+ import { c as renderSnapshotLinesForTerminal, i as SPINNER_FRAMES, s as hasRunningSnapshotWork, t as TerminalFrameTracker } from "./chunks/dep-Tb3jeYdU.js";
3
2
  //#region src/flow/renderer-process.ts
4
3
  let snapshot = {
5
4
  entries: [],
@@ -19,7 +18,7 @@ function readPositiveInteger(value) {
19
18
  return Number.isInteger(parsed) && parsed > 0 ? parsed : void 0;
20
19
  }
21
20
  function getTerminalColumns() {
22
- return Math.max(1, readPositiveInteger(process.env[FLOW_RENDERER_TEST_COLUMNS_ENV]) ?? process.stdout.columns ?? snapshot.terminalDimensions?.columns ?? DEFAULT_TERMINAL_COLUMNS);
21
+ return Math.max(1, readPositiveInteger(process.env[FLOW_RENDERER_TEST_COLUMNS_ENV]) ?? process.stdout.columns ?? snapshot.terminalDimensions?.columns ?? 80);
23
22
  }
24
23
  function getTerminalRows() {
25
24
  return readPositiveInteger(process.env.LIMINA_FLOW_RENDERER_TEST_ROWS) ?? process.stdout.rows;
@@ -54,7 +53,7 @@ function syncSpinnerTimer() {
54
53
  spinnerTimer = setInterval(() => {
55
54
  spinnerFrameIndex = (spinnerFrameIndex + 1) % SPINNER_FRAMES.length;
56
55
  render();
57
- }, SPINNER_INTERVAL_MS);
56
+ }, 80);
58
57
  }
59
58
  function writeOutput(message) {
60
59
  clearRenderedFrame();
@@ -96,6 +95,5 @@ process.on("message", (rawMessage) => {
96
95
  }
97
96
  });
98
97
  send({ type: "ready" });
99
-
100
98
  //#endregion
101
- export { };
99
+ export {};
package/index.js CHANGED
@@ -1,3 +1,2 @@
1
- import { t as defineConfig } from "./chunks/dep-DJz9JBTi.js";
2
-
3
- export { defineConfig };
1
+ import { t as defineConfig } from "./chunks/dep-BizOzD0V.js";
2
+ export { defineConfig };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "limina",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "author": "Senao Xi",
@@ -13,7 +13,7 @@
13
13
  "architecture"
14
14
  ],
15
15
  "engines": {
16
- "node": "^20.19.0 || >=22.12.0"
16
+ "node": "^22.18.0 || >=24.0.0"
17
17
  },
18
18
  "repository": {
19
19
  "type": "git",
@@ -56,6 +56,11 @@
56
56
  "$ref": "#/definitions/nonEmptyString",
57
57
  "description": "TypeScript target for generated artifact output builds."
58
58
  },
59
+ "declarationMap": {
60
+ "type": "boolean",
61
+ "default": false,
62
+ "description": "Whether generated artifact output builds should emit declaration maps."
63
+ },
59
64
  "rootDir": {
60
65
  "$ref": "#/definitions/nonEmptyString",
61
66
  "description": "Artifact build rootDir, relative to this tsconfig."
@@ -63,10 +68,6 @@
63
68
  "outDir": {
64
69
  "$ref": "#/definitions/nonEmptyString",
65
70
  "description": "Artifact build outDir, relative to this tsconfig."
66
- },
67
- "tsBuildInfoFile": {
68
- "$ref": "#/definitions/nonEmptyString",
69
- "description": "Artifact build tsBuildInfoFile, relative to this tsconfig."
70
71
  }
71
72
  }
72
73
  },