@vertz/tui 0.2.32 → 0.2.33
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 +1 -1
- package/dist/index.js +1 -8
- package/package.json +11 -11
package/README.md
CHANGED
package/dist/index.js
CHANGED
|
@@ -8,14 +8,7 @@ import {
|
|
|
8
8
|
} from "./shared/chunk-6y95cgnx.js";
|
|
9
9
|
|
|
10
10
|
// src/index.ts
|
|
11
|
-
import {
|
|
12
|
-
batch,
|
|
13
|
-
computed,
|
|
14
|
-
createContext as createContext2,
|
|
15
|
-
onMount,
|
|
16
|
-
signal as signal10,
|
|
17
|
-
useContext as useContext2
|
|
18
|
-
} from "@vertz/ui";
|
|
11
|
+
import { batch, computed, createContext as createContext2, onMount, signal as signal10, useContext as useContext2 } from "@vertz/ui";
|
|
19
12
|
|
|
20
13
|
// src/app.ts
|
|
21
14
|
import { lifecycleEffect, popScope as popScope2, pushScope as pushScope2, runCleanups as runCleanups2 } from "@vertz/ui/internals";
|
package/package.json
CHANGED
|
@@ -1,13 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vertz/tui",
|
|
3
|
-
"version": "0.2.
|
|
4
|
-
"type": "module",
|
|
3
|
+
"version": "0.2.33",
|
|
5
4
|
"license": "MIT",
|
|
6
5
|
"repository": {
|
|
7
6
|
"type": "git",
|
|
8
7
|
"url": "https://github.com/vertz-dev/vertz.git",
|
|
9
8
|
"directory": "packages/tui"
|
|
10
9
|
},
|
|
10
|
+
"files": [
|
|
11
|
+
"dist"
|
|
12
|
+
],
|
|
13
|
+
"type": "module",
|
|
11
14
|
"main": "dist/index.js",
|
|
12
15
|
"types": "dist/index.d.ts",
|
|
13
16
|
"exports": {
|
|
@@ -32,17 +35,18 @@
|
|
|
32
35
|
"import": "./dist/test/index.js"
|
|
33
36
|
}
|
|
34
37
|
},
|
|
35
|
-
"
|
|
36
|
-
"
|
|
37
|
-
|
|
38
|
+
"publishConfig": {
|
|
39
|
+
"access": "public",
|
|
40
|
+
"provenance": true
|
|
41
|
+
},
|
|
38
42
|
"scripts": {
|
|
39
43
|
"build": "bunup",
|
|
40
44
|
"typecheck": "tsc --noEmit",
|
|
41
45
|
"test": "bun test",
|
|
42
|
-
"lint": "
|
|
46
|
+
"lint": "oxlint src/"
|
|
43
47
|
},
|
|
44
48
|
"dependencies": {
|
|
45
|
-
"@vertz/ui": "^0.2.
|
|
49
|
+
"@vertz/ui": "^0.2.31"
|
|
46
50
|
},
|
|
47
51
|
"devDependencies": {
|
|
48
52
|
"@types/node": "^25.3.1",
|
|
@@ -51,9 +55,5 @@
|
|
|
51
55
|
},
|
|
52
56
|
"engines": {
|
|
53
57
|
"node": ">=22"
|
|
54
|
-
},
|
|
55
|
-
"publishConfig": {
|
|
56
|
-
"access": "public",
|
|
57
|
-
"provenance": true
|
|
58
58
|
}
|
|
59
59
|
}
|