@andrew_l/vue-stdout 0.3.22 → 0.4.0
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/dist/index.d.ts +1 -2
- package/package.json +6 -6
package/dist/index.d.ts
CHANGED
|
@@ -6,7 +6,6 @@ import { LiteralUnion } from 'type-fest';
|
|
|
6
6
|
import { ForegroundColorName as ForegroundColorName$1 } from 'chalk';
|
|
7
7
|
import { EventEmitter } from 'node:events';
|
|
8
8
|
import { Node } from 'yoga-wasm-web/auto';
|
|
9
|
-
import * as _vue_runtime_core from '@vue/runtime-core';
|
|
10
9
|
import * as _andrew_l_toolkit from '@andrew_l/toolkit';
|
|
11
10
|
import { AnyFunction, Fn } from '@andrew_l/toolkit';
|
|
12
11
|
|
|
@@ -546,7 +545,7 @@ declare const DOM: Readonly<{
|
|
|
546
545
|
readonly createElement: typeof DOMDocument.createElement;
|
|
547
546
|
}>;
|
|
548
547
|
|
|
549
|
-
declare const createApp:
|
|
548
|
+
declare const createApp: vue.CreateAppFunction<DOMElement | DOMDocument>;
|
|
550
549
|
|
|
551
550
|
declare class RenderBlock extends RenderNode {
|
|
552
551
|
readonly nodeType: RenderNodeType;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@andrew_l/vue-stdout",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"description": "Renderer for terminal output with flexible layouts and CLI components.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -13,11 +13,11 @@
|
|
|
13
13
|
"exports": {
|
|
14
14
|
".": {
|
|
15
15
|
"import": "./dist/index.mjs",
|
|
16
|
-
"
|
|
16
|
+
"types": "./dist/index.d.mts"
|
|
17
17
|
}
|
|
18
18
|
},
|
|
19
|
-
"main": "./dist/index.
|
|
20
|
-
"types": "./dist/index.d.
|
|
19
|
+
"main": "./dist/index.mjs",
|
|
20
|
+
"types": "./dist/index.d.mts",
|
|
21
21
|
"files": [
|
|
22
22
|
"dist"
|
|
23
23
|
],
|
|
@@ -26,10 +26,10 @@
|
|
|
26
26
|
"@vitejs/plugin-vue-jsx": "^4.1.0",
|
|
27
27
|
"@vue/tsconfig": "^0.6.0",
|
|
28
28
|
"chalk": "^5.3.0",
|
|
29
|
+
"obuild": "^0.4.37",
|
|
29
30
|
"tsup": "^8.3.5",
|
|
30
31
|
"tsx": "^4.19.2",
|
|
31
32
|
"typescript": "~5.8.3",
|
|
32
|
-
"unbuild": "3.5.0",
|
|
33
33
|
"unplugin-vue-jsx": "^0.4.0",
|
|
34
34
|
"vitest": "^3.2.4",
|
|
35
35
|
"vue": "3.5.13"
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"widest-line": "^5.0.0",
|
|
49
49
|
"wrap-ansi": "^9.0.0",
|
|
50
50
|
"yoga-wasm-web": "^0.3.3",
|
|
51
|
-
"@andrew_l/toolkit": "0.
|
|
51
|
+
"@andrew_l/toolkit": "0.4.0"
|
|
52
52
|
},
|
|
53
53
|
"scripts": {
|
|
54
54
|
"build": "tsup",
|