@nx/js 17.2.0-beta.14 → 17.2.0-beta.15
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": "17.2.0-beta.
|
|
3
|
+
"version": "17.2.0-beta.15",
|
|
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": {
|
|
@@ -57,9 +57,9 @@
|
|
|
57
57
|
"semver": "7.5.3",
|
|
58
58
|
"source-map-support": "0.5.19",
|
|
59
59
|
"tslib": "^2.3.0",
|
|
60
|
-
"@nx/devkit": "17.2.0-beta.
|
|
61
|
-
"@nx/workspace": "17.2.0-beta.
|
|
62
|
-
"@nrwl/js": "17.2.0-beta.
|
|
60
|
+
"@nx/devkit": "17.2.0-beta.15",
|
|
61
|
+
"@nx/workspace": "17.2.0-beta.15",
|
|
62
|
+
"@nrwl/js": "17.2.0-beta.15"
|
|
63
63
|
},
|
|
64
64
|
"peerDependencies": {
|
|
65
65
|
"verdaccio": "^5.0.4"
|
|
@@ -218,6 +218,10 @@ To fix this you will either need to add a package.json file at that location, or
|
|
|
218
218
|
}
|
|
219
219
|
for (const dependentProject of dependentProjects) {
|
|
220
220
|
(0, devkit_1.updateJson)(tree, (0, devkit_1.joinPathFragments)(projectNameToPackageRootMap.get(dependentProject.source), 'package.json'), (json) => {
|
|
221
|
+
// Do not update "*" as it already matches all possible versions including the new one
|
|
222
|
+
if (json[dependentProject.dependencyCollection][packageName] === '*') {
|
|
223
|
+
return json;
|
|
224
|
+
}
|
|
221
225
|
json[dependentProject.dependencyCollection][packageName] =
|
|
222
226
|
newVersion;
|
|
223
227
|
return json;
|