浏览代码

chore: Use exact versions for internal dependencies

This prevents issues that can occur when e.g. the ui-devkit for v3.1.x pulls in v3.2.x of admin-ui
(due to to the use of the `^` range) which then causes build issues
if there are e.g. breaking changes with a newer Angular version etc.
Michael Bromley 9 月之前
父节点
当前提交
d9a4d96caf
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      package.json

+ 1 - 1
package.json

@@ -28,7 +28,7 @@
     "check-core-type-defs": "ts-node scripts/check-core-type-defs.ts",
     "check-angular-versions": "ts-node scripts/check-angular-versions.ts",
     "generate-changelog": "ts-node scripts/changelogs/generate-changelog.ts",
-    "publish-release": "lerna version -m \"chore: Publish %s\" --no-push --force-publish",
+    "publish-release": "lerna version -m \"chore: Publish %s\" --no-push --force-publish --exact",
     "publish-prerelease": "lerna version -m \"chore: Pre-release %s\" prerelease --exact --no-push --force-publish --preid next --dist-tag next",
     "publish-local": "lerna version --force-publish --no-git-tag-version && cd scripts && ./publish-to-verdaccio.sh"
   },