@nx/workspace 18.2.0-canary.20240323-54d4780 → 18.2.0-canary.20240327-82dc703
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/workspace",
|
|
3
|
-
"version": "18.2.0-canary.
|
|
3
|
+
"version": "18.2.0-canary.20240327-82dc703",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "The Workspace plugin contains executors and generators that are useful for any Nx workspace. It should be present in every Nx workspace and other plugins build on it.",
|
|
6
6
|
"repository": {
|
|
@@ -61,13 +61,13 @@
|
|
|
61
61
|
}
|
|
62
62
|
},
|
|
63
63
|
"dependencies": {
|
|
64
|
-
"@nx/devkit": "18.2.0-canary.
|
|
64
|
+
"@nx/devkit": "18.2.0-canary.20240327-82dc703",
|
|
65
65
|
"chalk": "^4.1.0",
|
|
66
66
|
"enquirer": "~2.3.6",
|
|
67
67
|
"tslib": "^2.3.0",
|
|
68
68
|
"yargs-parser": "21.1.1",
|
|
69
|
-
"nx": "18.2.0-canary.
|
|
70
|
-
"@nrwl/workspace": "18.2.0-canary.
|
|
69
|
+
"nx": "18.2.0-canary.20240327-82dc703",
|
|
70
|
+
"@nrwl/workspace": "18.2.0-canary.20240327-82dc703"
|
|
71
71
|
},
|
|
72
72
|
"publishConfig": {
|
|
73
73
|
"access": "public"
|
|
@@ -124,7 +124,7 @@ function updateImportDeclarations(sourceFile, from, to) {
|
|
|
124
124
|
]);
|
|
125
125
|
const changes = [];
|
|
126
126
|
for (const { moduleSpecifier } of importDecls) {
|
|
127
|
-
if (tsModule.isStringLiteral(moduleSpecifier)) {
|
|
127
|
+
if (moduleSpecifier && tsModule.isStringLiteral(moduleSpecifier)) {
|
|
128
128
|
changes.push(...updateModuleSpecifier(moduleSpecifier, from, to));
|
|
129
129
|
}
|
|
130
130
|
}
|