Remove unused isDev constant from CLI version module (#33858)

The `isDev` export in `packages/cli/src/wiring/version.ts` was never
imported anywhere. Remove it to reduce dead code.


Made-with: Cursor

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
This commit is contained in:
Patrik Oldsberg
2026-04-13 12:22:04 +02:00
committed by GitHub
parent 67b88815ae
commit a2f0c72af8
2 changed files with 5 additions and 1 deletions
@@ -0,0 +1,5 @@
---
'@backstage/cli': patch
---
Removed the unused `isDev` export from the internal version module.
-1
View File
@@ -26,4 +26,3 @@ export function findVersion() {
}
export const version = findVersion();
export const isDev = fs.pathExistsSync(ownPaths.resolve('src'));