@tachui/cli 0.7.1-alpha → 0.8.0-alpha

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/README.md +7 -6
  2. package/package.json +15 -4
package/README.md CHANGED
@@ -23,17 +23,17 @@ The tachUI CLI (`tacho`) provides comprehensive developer tooling including proj
23
23
  ### Global Installation
24
24
 
25
25
  ```bash
26
- npm install -g @tachui/cli
26
+ npm install -g @tachui/cli@0.8.0-alpha
27
27
  # or
28
- pnpm add -g @tachui/cli
28
+ pnpm add -g @tachui/cli@0.8.0-alpha
29
29
  ```
30
30
 
31
31
  ### Local Project Installation
32
32
 
33
33
  ```bash
34
- npm install --save-dev @tachui/cli
34
+ npm install --save-dev @tachui/cli@0.8.0-alpha
35
35
  # or
36
- pnpm add -D @tachui/cli
36
+ pnpm add -D @tachui/cli@0.8.0-alpha
37
37
  ```
38
38
 
39
39
  ## Quick Start
@@ -273,7 +273,8 @@ struct ContentView: View {
273
273
  **After (tachUI):**
274
274
 
275
275
  ```typescript
276
- import { VStack, Text, Button, createSignal } from '@tachui/core'
276
+ import { createSignal } from '@tachui/core'
277
+ import { VStack, Text, Button } from '@tachui/primitives'
277
278
 
278
279
  const ContentView = () => {
279
280
  const [count, setCount] = createSignal(0)
@@ -426,7 +427,7 @@ Check out generated project examples:
426
427
  ## Requirements
427
428
 
428
429
  - **Node.js** 20.0+
429
- - **@tachui/core** ^0.1.0 or later
430
+ - **@tachui/core** ^0.8.0-alpha or later
430
431
  - **TypeScript** 5.0+ (recommended)
431
432
 
432
433
  ## Contributing
package/package.json CHANGED
@@ -1,9 +1,11 @@
1
1
  {
2
2
  "name": "@tachui/cli",
3
- "version": "0.7.1-alpha",
3
+ "version": "0.8.0-alpha",
4
4
  "description": "Tacho CLI - Comprehensive developer tooling for tachUI",
5
+ "homepage": "https://tachui.dev/",
5
6
  "type": "module",
6
7
  "main": "./dist/index.js",
8
+ "module": "./dist/index.js",
7
9
  "types": "./dist/index.d.ts",
8
10
  "bin": {
9
11
  "tacho": "./bin/tacho.js"
@@ -20,14 +22,14 @@
20
22
  "prompts": "^2.4.0",
21
23
  "fs-extra": "^11.0.0",
22
24
  "glob": "^10.0.0",
23
- "@tachui/core": "0.7.1-alpha"
25
+ "@tachui/core": "0.8.0-alpha"
24
26
  },
25
27
  "devDependencies": {
26
28
  "@types/fs-extra": "^11.0.0",
27
29
  "@types/prompts": "^2.4.0",
28
30
  "@types/node": "^20.0.0",
29
- "typescript": "^5.2.0",
30
- "vitest": "^1.0.0"
31
+ "typescript": "^5.8.0",
32
+ "vitest": "^3.2.4"
31
33
  },
32
34
  "keywords": [
33
35
  "cli",
@@ -45,9 +47,18 @@
45
47
  "url": "https://github.com/tach-UI/tachUI",
46
48
  "directory": "packages/cli"
47
49
  },
50
+ "bugs": "https://github.com/tach-UI/tachUI/issues",
51
+ "engines": {
52
+ "node": ">=20.0.0"
53
+ },
54
+ "sideEffects": false,
55
+ "publishConfig": {
56
+ "access": "public"
57
+ },
48
58
  "scripts": {
49
59
  "build": "tsc -p tsconfig.build.json",
50
60
  "dev": "tsc -p tsconfig.build.json --watch",
61
+ "valid": "clear && vitest run && tsc --noEmit && pnpm lint && pnpm build",
51
62
  "test": "vitest",
52
63
  "test:ci": "vitest run",
53
64
  "type-check": "tsc --noEmit",