Version Packages (next)

This commit is contained in:
github-actions[bot]
2025-09-30 14:42:12 +00:00
parent 0aa318ede6
commit ffb5b44d86
62 changed files with 2627 additions and 33 deletions
+20
View File
@@ -1,5 +1,25 @@
# @backstage/cli
## 0.34.4-next.2
### Patch Changes
- ab96bb7: Added a new `--entrypoint` option to the `package start` command, which allows you to specify a custom entry directory/file for development applications. This is particularly useful when maintaining separate dev apps for different versions of your plugin (e.g., stable and alpha).
**Example usage:**
Consider the following plugin dev folder structure:
```
dev/
index.tsx
alpha/
index.ts
```
- The default `yarn package start` command uses the `dev/` folder as the entry point and executes `dev/index.tsx` file;
- Running `yarn package start --entrypoint dev/alpha` will instead use `dev/alpha/` as the entry point and execute `dev/alpha/index.ts` file.
## 0.34.4-next.1
### Patch Changes