@di-rs/rollercoaster 1.2.0 β 1.3.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.md +0 -41
- package/dist/index.js +181 -109
- package/package.json +72 -73
package/README.md
CHANGED
|
@@ -54,11 +54,6 @@ chmod +x rollercoaster
|
|
|
54
54
|
sudo mv rollercoaster /usr/local/bin/
|
|
55
55
|
```
|
|
56
56
|
|
|
57
|
-
**Windows:**
|
|
58
|
-
```powershell
|
|
59
|
-
# Download from GitHub releases
|
|
60
|
-
# https://github.com/di-rs/rollercoaster/releases/latest/download/rollercoaster-windows-x64.exe
|
|
61
|
-
```
|
|
62
57
|
|
|
63
58
|
### Using Homebrew (macOS)
|
|
64
59
|
|
|
@@ -257,7 +252,6 @@ bun run build
|
|
|
257
252
|
bun run build:bin:macos-arm64 # Apple Silicon
|
|
258
253
|
bun run build:bin:macos-x64 # Intel Mac
|
|
259
254
|
bun run build:bin:linux-x64 # Linux x86_64
|
|
260
|
-
bun run build:bin:windows-x64 # Windows x86_64
|
|
261
255
|
|
|
262
256
|
# Build all platforms (npm package + all executables)
|
|
263
257
|
bun run build:all
|
|
@@ -348,41 +342,6 @@ Built with:
|
|
|
348
342
|
- [Chalk](https://github.com/chalk/chalk) - Terminal styling
|
|
349
343
|
- [Biome](https://biomejs.dev/) - Fast formatter and linter
|
|
350
344
|
|
|
351
|
-
## πΊοΈ Roadmap
|
|
352
|
-
|
|
353
|
-
### Current Version β
|
|
354
|
-
- [x] Multi-manager support (npm, pnpm, yarn, Task)
|
|
355
|
-
- [x] Fuzzy search
|
|
356
|
-
- [x] Interactive TUI with pagination
|
|
357
|
-
- [x] Task preview panel
|
|
358
|
-
- [x] Vim-style keyboard shortcuts
|
|
359
|
-
- [x] Search highlighting
|
|
360
|
-
- [x] Interactive help
|
|
361
|
-
- [x] Configuration file
|
|
362
|
-
|
|
363
|
-
### Planned Features
|
|
364
|
-
- [ ] Task favorites/bookmarks
|
|
365
|
-
- [ ] Recent tasks history
|
|
366
|
-
- [ ] Custom color themes
|
|
367
|
-
- [ ] Task execution history
|
|
368
|
-
- [ ] Multi-select for batch execution
|
|
369
|
-
- [x] Bun support
|
|
370
|
-
- [ ] Deno support
|
|
371
|
-
- [ ] Makefile support
|
|
372
|
-
- [ ] Custom keybindings
|
|
373
|
-
|
|
374
|
-
### Future Ideas
|
|
375
|
-
- [ ] Shell integration (zsh, bash)
|
|
376
|
-
- [ ] Task aliases
|
|
377
|
-
- [ ] Workspace-aware task grouping
|
|
378
|
-
- [ ] Task dependencies visualization
|
|
379
|
-
- [ ] Performance metrics
|
|
380
|
-
- [ ] Task execution time tracking
|
|
381
|
-
|
|
382
|
-
## β FAQ
|
|
383
|
-
|
|
384
|
-
**Q: How does Rollercoaster detect which package manager to use?**
|
|
385
|
-
A: It scans for lock files (pnpm-lock.yaml, yarn.lock, package-lock.json) and uses the corresponding manager.
|
|
386
345
|
|
|
387
346
|
**Q: Can I use it in a monorepo?**
|
|
388
347
|
A: Yes! It scans from the current directory up to the git root and detects all managers along the way.
|