Skip to content

Commit 5695245

Browse files
committed
chore: release v25.22.0
1 parent 3b0cf16 commit 5695245

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,6 @@
8787
"eslint"
8888
]
8989
},
90-
"version": "25.19.0",
90+
"version": "25.22.0",
9191
"packageManager": "pnpm@9.6.0"
9292
}

packages/release/src/index.js

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,15 @@ const checkUncommittedChanges = () => {
165165
}
166166
};
167167

168+
const installDependencies = () => {
169+
console.log("Installing dependencies...");
170+
if (isDryRun) {
171+
console.log("[Dry Run] Dependencies would be installed.");
172+
} else {
173+
runProjectRootCommand("pnpm i");
174+
}
175+
};
176+
168177
const buildProject = () => {
169178
console.log("Building project...");
170179
let filter = "";
@@ -246,6 +255,8 @@ const main = async () => {
246255

247256
checkUncommittedChanges();
248257

258+
installDependencies();
259+
249260
let changelogContent;
250261
let newVersion;
251262
if (!hotfix) {

0 commit comments

Comments
 (0)