feat: Add ansi-regex override and refine npm install in version script

This commit is contained in:
mkorwel
2025-09-25 22:22:57 -07:00
parent 6ef2a1da16
commit 08964863dd
2 changed files with 5 additions and 2 deletions

View File

@@ -113,7 +113,8 @@
"wrap-ansi": "9.0.2",
"cliui": {
"wrap-ansi": "7.0.0"
}
},
"ansi-regex": "6.2.2"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [

View File

@@ -76,6 +76,8 @@ if (cliPackageJson.config?.sandboxImageUri) {
}
// 6. Run `npm install` to update package-lock.json.
run('npm install');
run(
'npm install --workspace packages/cli --workspace packages/core --package-lock-only',
);
console.log(`Successfully bumped versions to v${newVersion}.`);