Merge pull request #10587 from Budibase/fix/cli-version-issue

Removing version error breaking CLI
This commit is contained in:
Michael Drury 2023-05-15 16:43:03 +01:00 committed by GitHub
commit a94cb0e7bf
1 changed files with 3 additions and 3 deletions

View File

@ -69,10 +69,10 @@ function findVersion() {
try {
const packageJsonFile = findFileInAncestors("package.json", process.cwd())
const content = readFileSync(packageJsonFile!, "utf-8")
const version = JSON.parse(content).version
return version
return JSON.parse(content).version
} catch {
throw new Error("Cannot find a valid version in its package.json")
// throwing an error here is confusing/causes backend-core to be hard to import
return undefined
}
}