@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 +66 -57
- package/README.md +656 -656
- package/package.json +50 -50
- package/src/commands/add.ts +201 -201
- package/src/commands/build.ts +250 -250
- package/src/commands/create.ts +229 -229
- package/src/commands/list.ts +88 -88
- package/src/commands/serve.ts +100 -100
- package/src/index.ts +59 -59
- package/src/types/index.ts +53 -53
- package/src/utils/github.ts +260 -260
- package/src/utils/logger.ts +478 -478
- package/src/utils/templates.ts +1116 -1120
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
|
-
|
|
7
|
-
### Added
|
|
8
|
-
-
|
|
9
|
-
- `
|
|
10
|
-
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
-
|
|
25
|
-
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
-
|
|
31
|
-
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
-
|
|
35
|
-
-
|
|
36
|
-
-
|
|
37
|
-
-
|
|
38
|
-
-
|
|
39
|
-
- Comprehensive
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
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
|
+
|