@akiojin/gwt 6.26.0 → 6.27.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/README.ja.md +12 -3
- package/README.md +12 -3
- package/package.json +1 -1
package/README.ja.md
CHANGED
|
@@ -86,9 +86,12 @@ cargo run -p gwt-cli
|
|
|
86
86
|
git clone https://github.com/akiojin/gwt.git
|
|
87
87
|
cd gwt
|
|
88
88
|
|
|
89
|
-
#
|
|
89
|
+
# リリースバイナリをビルド(デフォルト: gwt-cli)
|
|
90
90
|
cargo build --release
|
|
91
91
|
|
|
92
|
+
# ワークスペース全体をビルド(Web/wasm含む)
|
|
93
|
+
cargo build --workspace
|
|
94
|
+
|
|
92
95
|
# バイナリは target/release/gwt にあります
|
|
93
96
|
./target/release/gwt
|
|
94
97
|
```
|
|
@@ -128,6 +131,12 @@ gwt remove feature/old-feature
|
|
|
128
131
|
|
|
129
132
|
# 孤立したワークツリーをクリーンアップ
|
|
130
133
|
gwt clean
|
|
134
|
+
|
|
135
|
+
# ログを表示
|
|
136
|
+
gwt logs --limit 100
|
|
137
|
+
|
|
138
|
+
# ログをフォロー
|
|
139
|
+
gwt logs --follow
|
|
131
140
|
```
|
|
132
141
|
|
|
133
142
|
ツールは以下のオプションを持つ対話型インターフェースを提供します:
|
|
@@ -369,8 +378,8 @@ gwt
|
|
|
369
378
|
├── crates/
|
|
370
379
|
│ ├── gwt-cli/ # CLIエントリポイントとTUI(Ratatui)
|
|
371
380
|
│ ├── gwt-core/ # コアライブラリ(ワークツリー管理)
|
|
372
|
-
│ ├── gwt-web/ # Web
|
|
373
|
-
│ └── gwt-frontend/ # Web
|
|
381
|
+
│ ├── gwt-web/ # Webサーバー(Axum)
|
|
382
|
+
│ └── gwt-frontend/ # Webフロントエンド(Leptos CSR)
|
|
374
383
|
├── package.json # npm配布用ラッパー
|
|
375
384
|
├── bin/gwt.js # バイナリラッパースクリプト
|
|
376
385
|
├── scripts/postinstall.js # バイナリダウンロードスクリプト
|
package/README.md
CHANGED
|
@@ -86,9 +86,12 @@ cargo run -p gwt-cli
|
|
|
86
86
|
git clone https://github.com/akiojin/gwt.git
|
|
87
87
|
cd gwt
|
|
88
88
|
|
|
89
|
-
# Build release binary
|
|
89
|
+
# Build release binary (default: gwt-cli)
|
|
90
90
|
cargo build --release
|
|
91
91
|
|
|
92
|
+
# Build all workspace crates (including web/wasm)
|
|
93
|
+
cargo build --workspace
|
|
94
|
+
|
|
92
95
|
# The binary is at target/release/gwt
|
|
93
96
|
./target/release/gwt
|
|
94
97
|
```
|
|
@@ -128,6 +131,12 @@ gwt remove feature/old-feature
|
|
|
128
131
|
|
|
129
132
|
# Cleanup orphaned worktrees
|
|
130
133
|
gwt clean
|
|
134
|
+
|
|
135
|
+
# Show logs
|
|
136
|
+
gwt logs --limit 100
|
|
137
|
+
|
|
138
|
+
# Follow logs
|
|
139
|
+
gwt logs --follow
|
|
131
140
|
```
|
|
132
141
|
|
|
133
142
|
The tool presents an interactive interface with the following options:
|
|
@@ -369,8 +378,8 @@ gwt
|
|
|
369
378
|
├── crates/
|
|
370
379
|
│ ├── gwt-cli/ # CLI entry point and TUI (Ratatui)
|
|
371
380
|
│ ├── gwt-core/ # Core library (worktree management)
|
|
372
|
-
│ ├── gwt-web/ # Web server (
|
|
373
|
-
│ └── gwt-frontend/ # Web frontend (
|
|
381
|
+
│ ├── gwt-web/ # Web server (Axum)
|
|
382
|
+
│ └── gwt-frontend/ # Web frontend (Leptos CSR)
|
|
374
383
|
├── package.json # npm distribution wrapper
|
|
375
384
|
├── bin/gwt.js # Binary wrapper script
|
|
376
385
|
├── scripts/postinstall.js # Binary download script
|