@burger-api/cli 0.6.6 → 0.7.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/CHANGELOG.md CHANGED
@@ -1,57 +1,66 @@
1
- ## 📣 Release Notes - Burger API CLI
2
-
3
- All notable changes to the Burger API CLI will be documented in this file.
4
-
5
- ## Version 0.6.6 - (December 23, 2025)
6
-
7
- ### Added
8
- - `.llm-context` folder to the project with AI context files
9
- - `llms.txt`, `llms-small.txt`, and `llms-full.txt` files
10
- - Updated README.md
11
-
12
- ## Version 0.6.3 - (December 17, 2025)
13
-
14
- ### Added
15
- - GitHub Actions release workflow
16
- - Updated README.md
17
-
18
- ## Version 0.1.0 - (December 14, 2025)
19
-
20
- ### Added
21
- - Initial release of Burger API CLI
22
- - `create` command to generate new projects with interactive prompts
23
- - `list` command to show available middleware from ecosystem
24
- - `add` command to download and install middleware
25
- - `build` command to bundle projects to single JS file
26
- - `build:executable` command to compile to standalone executable
27
- - `serve` command for development server with hot reload
28
- - Beautiful console output with colors and symbols
29
- - Zero external dependencies for file operations (uses Bun's native APIs)
30
- - Comprehensive documentation and examples
31
- - Support for Windows, macOS, and Linux
32
-
33
- ### Technical Details
34
- - Built with TypeScript and Bun.js
35
- - Uses only 2 dependencies: `commander` and `@clack/prompts`
36
- - All file downloads use Bun's native `fetch()` API
37
- - All file operations use Bun's fast file system APIs
38
- - All process spawning uses `Bun.spawn()`
39
- - Comprehensive JSDoc comments throughout codebase
40
-
41
- ## Release Process
42
-
43
- See [RELEASING.md](./RELEASING.md) for the release process.
44
-
45
- ---
46
-
47
- ## Change Categories
48
-
49
- We use these categories to organize changes:
50
-
51
- - **Added** - New features or commands
52
- - **Changed** - Changes to existing functionality
53
- - **Deprecated** - Features that will be removed in future
54
- - **Removed** - Features that have been removed
55
- - **Fixed** - Bug fixes
56
- - **Security** - Security improvements
57
-
1
+ ## 📣 Release Notes - Burger API CLI
2
+
3
+ All notable changes to the Burger API CLI will be documented in this file.
4
+
5
+ ## Version 0.7.0 - (December 23, 2025)
6
+
7
+ ### Added
8
+ - npm publishing support - CLI is now available on npm as `@burger-api/cli`
9
+ - Users can install via `bun add -g @burger-api/cli` or use `bunx @burger-api/cli`
10
+ - Lightweight npm package (~27KB) as alternative to 100MB executables
11
+ - GitHub Actions workflow for automated npm publishing (when organization is configured)
12
+
13
+
14
+ ## Version 0.6.6 - (December 23, 2025)
15
+
16
+ ### Added
17
+ - `.llm-context` folder to the project with AI context files
18
+ - `llms.txt`, `llms-small.txt`, and `llms-full.txt` files
19
+ - Updated README.md
20
+
21
+ ## Version 0.6.3 - (December 17, 2025)
22
+
23
+ ### Added
24
+ - GitHub Actions release workflow
25
+ - Updated README.md
26
+
27
+ ## Version 0.1.0 - (December 14, 2025)
28
+
29
+ ### Added
30
+ - Initial release of Burger API CLI
31
+ - `create` command to generate new projects with interactive prompts
32
+ - `list` command to show available middleware from ecosystem
33
+ - `add` command to download and install middleware
34
+ - `build` command to bundle projects to single JS file
35
+ - `build:executable` command to compile to standalone executable
36
+ - `serve` command for development server with hot reload
37
+ - Beautiful console output with colors and symbols
38
+ - Zero external dependencies for file operations (uses Bun's native APIs)
39
+ - Comprehensive documentation and examples
40
+ - Support for Windows, macOS, and Linux
41
+
42
+ ### Technical Details
43
+ - Built with TypeScript and Bun.js
44
+ - Uses only 2 dependencies: `commander` and `@clack/prompts`
45
+ - All file downloads use Bun's native `fetch()` API
46
+ - All file operations use Bun's fast file system APIs
47
+ - All process spawning uses `Bun.spawn()`
48
+ - Comprehensive JSDoc comments throughout codebase
49
+
50
+ ## Release Process
51
+
52
+ See [RELEASING.md](./RELEASING.md) for the release process.
53
+
54
+ ---
55
+
56
+ ## Change Categories
57
+
58
+ We use these categories to organize changes:
59
+
60
+ - **Added** - New features or commands
61
+ - **Changed** - Changes to existing functionality
62
+ - **Deprecated** - Features that will be removed in future
63
+ - **Removed** - Features that have been removed
64
+ - **Fixed** - Bug fixes
65
+ - **Security** - Security improvements
66
+