glance-cli 0.8.1 → 0.8.3
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/CHANGELOG.md +16 -0
- package/README.md +4 -1
- package/dist/cli.js +321 -320
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,22 @@ All notable changes to glance-cli will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.8.3] - 2026-01-02
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
- Added shebang to CLI for proper execution
|
|
12
|
+
- Fixed Bun/Node.js compatibility issues
|
|
13
|
+
- Added compatibility layer for cross-runtime support
|
|
14
|
+
|
|
15
|
+
## [0.8.2] - 2026-01-02
|
|
16
|
+
|
|
17
|
+
### Changed
|
|
18
|
+
- Added Bun as preferred installation method in documentation
|
|
19
|
+
- Updated CLI imports for better compatibility
|
|
20
|
+
|
|
21
|
+
### Fixed
|
|
22
|
+
- Removed development files from distribution
|
|
23
|
+
|
|
8
24
|
## [0.8.1] - 2026-01-02
|
|
9
25
|
|
|
10
26
|
### Changed
|
package/README.md
CHANGED
|
@@ -18,7 +18,10 @@ Turn any webpage into terminal-friendly insights — no browser needed.
|
|
|
18
18
|
## ⚡ Quick Start
|
|
19
19
|
|
|
20
20
|
```bash
|
|
21
|
-
# Install
|
|
21
|
+
# Install with Bun (preferred - faster!)
|
|
22
|
+
bun install -g glance-cli
|
|
23
|
+
|
|
24
|
+
# Or with npm
|
|
22
25
|
npm install -g glance-cli
|
|
23
26
|
|
|
24
27
|
# Use immediately (works without setup!)
|