@sigx/runtime-terminal 0.1.11 → 0.1.12

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +2 -2
  2. package/package.json +5 -5
package/dist/index.d.ts CHANGED
@@ -33,7 +33,7 @@ export declare function renderTerminal(app: any, options?: RenderTerminalOptions
33
33
  * ```
34
34
  */
35
35
  export declare function mountTerminal(options?: RenderTerminalOptions): {
36
- mount: (component: any, options: RenderTerminalOptions, appContext?: any) => (() => void);
36
+ mount: (component: any, options: RenderTerminalOptions, appContext?: any) => () => void;
37
37
  options: RenderTerminalOptions;
38
38
  onMount: (unmount: () => void) => void;
39
39
  };
@@ -55,7 +55,7 @@ export declare function exitTerminal(): void;
55
55
  * .mount({ clearConsole: true }, terminalMount);
56
56
  * ```
57
57
  */
58
- export declare const terminalMount: (component: any, options: RenderTerminalOptions, appContext?: any) => (() => void);
58
+ export declare const terminalMount: (component: any, options: RenderTerminalOptions, appContext?: any) => () => void;
59
59
  declare global {
60
60
  namespace JSX {
61
61
  interface IntrinsicElements {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sigx/runtime-terminal",
3
- "version": "0.1.11",
3
+ "version": "0.1.12",
4
4
  "description": "Terminal renderer for SignalX",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -33,17 +33,17 @@
33
33
  "url": "https://github.com/signalxjs/core/issues"
34
34
  },
35
35
  "dependencies": {
36
- "@sigx/runtime-core": "^0.1.11",
37
- "@sigx/reactivity": "^0.1.11"
36
+ "@sigx/reactivity": "^0.1.12",
37
+ "@sigx/runtime-core": "^0.1.12"
38
38
  },
39
39
  "devDependencies": {
40
40
  "typescript": "^5.9.3",
41
41
  "@types/node": "^20.0.0",
42
42
  "vite": "^8.0.0-beta.9",
43
- "@sigx/vite": "^0.1.11"
43
+ "@sigx/vite": "^0.1.12"
44
44
  },
45
45
  "scripts": {
46
- "build": "vite build && tsc --emitDeclarationOnly",
46
+ "build": "vite build && tsgo --emitDeclarationOnly",
47
47
  "dev": "vite build --watch"
48
48
  }
49
49
  }