itsvertical 0.0.3 → 0.0.5
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 +24 -6
- package/cli/dist/index.js +1758 -1820
- package/dist/assets/index-BeDPplJM.css +1 -0
- package/dist/assets/index-DHzvKWjh.js +448 -0
- package/dist/index.html +2 -2
- package/package.json +34 -13
- package/dist/assets/index-C1Wp2kHC.js +0 -177
- package/dist/assets/index-Dq3Strtu.css +0 -1
package/README.md
CHANGED
|
@@ -70,6 +70,9 @@ itsvertical task undone <file> <task-id> # Mark a task as not done
|
|
|
70
70
|
itsvertical task rename <file> <task-id> <name> # Rename a task
|
|
71
71
|
itsvertical task delete <file> <task-id> # Delete a task
|
|
72
72
|
itsvertical task move <file> <task-id> <layer> # Move a task to another layer
|
|
73
|
+
itsvertical task notes <file> <task-id> # Print task notes
|
|
74
|
+
itsvertical task notes <file> <tid> --set <html> # Set notes (HTML)
|
|
75
|
+
itsvertical task notes <file> <task-id> --clear # Clear notes
|
|
73
76
|
```
|
|
74
77
|
|
|
75
78
|
### Boxes
|
|
@@ -160,6 +163,18 @@ pnpm run build # builds both SPA (vite) and CLI (tsup)
|
|
|
160
163
|
pnpm run build:cli # builds only the CLI
|
|
161
164
|
```
|
|
162
165
|
|
|
166
|
+
### Dev
|
|
167
|
+
|
|
168
|
+
```
|
|
169
|
+
pnpm run dev
|
|
170
|
+
```
|
|
171
|
+
|
|
172
|
+
Starts a full dev environment with Vite HMR for the SPA and auto-restart for the CLI server. Creates a `dev.vertical` file from `sample.vertical` on first run (preserved across restarts). The browser opens automatically.
|
|
173
|
+
|
|
174
|
+
- **SPA:** Vite dev server at `http://localhost:4007` with HMR
|
|
175
|
+
- **CLI server:** Rebuilds and restarts automatically on changes (port 3456)
|
|
176
|
+
- **API proxy:** Vite proxies `/api/*` to the CLI server
|
|
177
|
+
|
|
163
178
|
### Test locally
|
|
164
179
|
|
|
165
180
|
```
|
|
@@ -168,6 +183,14 @@ pnpm run itsvertical -- new test-project.vertical "Test Project"
|
|
|
168
183
|
pnpm run itsvertical -- open test-project.vertical
|
|
169
184
|
```
|
|
170
185
|
|
|
186
|
+
### Test
|
|
187
|
+
|
|
188
|
+
```
|
|
189
|
+
pnpm run test
|
|
190
|
+
```
|
|
191
|
+
|
|
192
|
+
Unit tests use [Vitest](https://vitest.dev). Tests are co-located with source files (`*.test.ts`).
|
|
193
|
+
|
|
171
194
|
### Lint and type-check
|
|
172
195
|
|
|
173
196
|
```
|
|
@@ -177,12 +200,7 @@ pnpm run lint
|
|
|
177
200
|
|
|
178
201
|
### Publish
|
|
179
202
|
|
|
180
|
-
|
|
181
|
-
pnpm run build
|
|
182
|
-
npm publish
|
|
183
|
-
```
|
|
184
|
-
|
|
185
|
-
The `files` field in `package.json` includes only `cli/dist` and `dist` — the built outputs. Source files are not published.
|
|
203
|
+
Use the `/release` skill in Claude Code to publish a new version. It bumps the version, builds, and creates a GitHub release. You only need to run `npm publish` yourself (for OTP).
|
|
186
204
|
|
|
187
205
|
## Credits
|
|
188
206
|
|