Skip to content

Commit

Permalink
Fix build script
Browse files Browse the repository at this point in the history
Update packages before building Rollup for correct bundled version
  • Loading branch information
lukastaegert committed Oct 11, 2022
1 parent 39cd058 commit 9341340
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/release.js
Expand Up @@ -40,9 +40,9 @@ if (isMainBranch) {
await addStubChangelogEntry(newVersion, repo, includedPRs, changelog);
}

await updatePackages(pkg, browserPkg);
await installDependenciesBuildAndTest();
const changelogEntry = isMainBranch ? await waitForChangelogUpdate(newVersion) : '';
await updatePackages(pkg, browserPkg);
const gitTag = `v${newVersion}`;
await commitChanges(newVersion, gitTag);
await releasePackages(newVersion);
Expand Down

0 comments on commit 9341340

Please sign in to comment.