@nx/js 21.3.0-beta.2 → 21.3.0-beta.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nx/js",
3
- "version": "21.3.0-beta.2",
3
+ "version": "21.3.0-beta.3",
4
4
  "private": false,
5
5
  "description": "The JS plugin for Nx contains executors and generators that provide the best experience for developing JavaScript and TypeScript projects. ",
6
6
  "repository": {
@@ -39,8 +39,8 @@
39
39
  "@babel/preset-env": "^7.23.2",
40
40
  "@babel/preset-typescript": "^7.22.5",
41
41
  "@babel/runtime": "^7.22.6",
42
- "@nx/devkit": "21.3.0-beta.2",
43
- "@nx/workspace": "21.3.0-beta.2",
42
+ "@nx/devkit": "21.3.0-beta.3",
43
+ "@nx/workspace": "21.3.0-beta.3",
44
44
  "@zkochan/js-yaml": "0.0.7",
45
45
  "babel-plugin-const-enum": "^1.0.1",
46
46
  "babel-plugin-macros": "^3.1.0",
@@ -188,9 +188,10 @@ To fix this you will either need to add a package.json file at that location, or
188
188
  // We always need to independently resolve the current version from git tag per project if the projects are independent
189
189
  options.releaseGroup.projectsRelationship === 'independent') {
190
190
  const releaseTagPattern = options.releaseGroup.releaseTagPattern;
191
+ const releaseTagPatternRequireSemver = options.releaseGroup.releaseTagPatternRequireSemver;
191
192
  latestMatchingGitTag = await (0, git_1.getLatestGitTagForPattern)(releaseTagPattern, {
192
193
  projectName: project.name,
193
- }, options.releaseGroup.releaseTagPatternCheckAllBranchesWhen);
194
+ }, options.releaseGroup.releaseTagPatternCheckAllBranchesWhen, releaseTagPatternRequireSemver ?? true);
194
195
  if (!latestMatchingGitTag) {
195
196
  if (options.fallbackCurrentVersionResolver === 'disk') {
196
197
  if (!currentVersionFromDisk &&