Skip to content

Commit

Permalink
Update src/scripts/ci/publish.ts
Browse files Browse the repository at this point in the history
Co-authored-by: Joël Galeran <Jolg42@users.noreply.github.com>
  • Loading branch information
timsuchanek and Jolg42 committed Jun 9, 2020
1 parent 2a4365b commit 482af2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/scripts/ci/publish.ts
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ async function getNewDevVersion(packages: Packages): Promise<string> {
const devVersions = getDevVersionIncrements(versions)
const maxDev = Math.max(...devVersions, 0)

const version = `2.0.0-dev.0${maxDev + 1}`
const version = `2.0.0-dev.${maxDev + 1}`
console.log(`Got ${version} in ${Date.now() - before}ms`)
return version
}
Expand Down

0 comments on commit 482af2e

Please sign in to comment.