Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
v22
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"changes": [
{
"packageName": "@hcengineering/platform-rig",
"comment": "use fixed versions when upgrading hcengineering deps",
"type": "patch"
}
],
"packageName": "@hcengineering/platform-rig"
}
4 changes: 2 additions & 2 deletions packages/platform-rig/bin/update-deps.js
Original file line number Diff line number Diff line change
Expand Up @@ -160,8 +160,8 @@ async function updatePackageDependencies(project, latestVersions, dryRun = false
}

if (isNewerVersion(currentVersion, latestVersion)) {
const prefix = currentVersion.match(/^[\^~]/)?.[0] || '^'
const newVersion = `${prefix}${latestVersion}`
// Use fixed version without ^ prefix for hcengineering packages
const newVersion = latestVersion

changes.push({
depType,
Expand Down