@nx/workspace 19.4.0-beta.0 → 19.4.0-beta.2
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": "19.4.0-beta.
|
|
3
|
+
"version": "19.4.0-beta.2",
|
|
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": "19.4.0-beta.
|
|
64
|
+
"@nx/devkit": "19.4.0-beta.2",
|
|
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": "19.4.0-beta.
|
|
70
|
-
"@nrwl/workspace": "19.4.0-beta.
|
|
69
|
+
"nx": "19.4.0-beta.2",
|
|
70
|
+
"@nrwl/workspace": "19.4.0-beta.2"
|
|
71
71
|
},
|
|
72
72
|
"publishConfig": {
|
|
73
73
|
"access": "public"
|
|
@@ -9,6 +9,9 @@ export declare function parseTarget(targetString: string): {
|
|
|
9
9
|
config: string;
|
|
10
10
|
};
|
|
11
11
|
export declare function editTarget(targetString: string, callback: any): string;
|
|
12
|
+
/**
|
|
13
|
+
* @deprecated use the utility from nx/src/utils instead
|
|
14
|
+
*/
|
|
12
15
|
export declare function serializeTarget({ project, target, config }: {
|
|
13
16
|
project: any;
|
|
14
17
|
target: any;
|
|
@@ -23,6 +23,9 @@ function editTarget(targetString, callback) {
|
|
|
23
23
|
return serializeTarget(callback(parsedTarget));
|
|
24
24
|
}
|
|
25
25
|
exports.editTarget = editTarget;
|
|
26
|
+
/**
|
|
27
|
+
* @deprecated use the utility from nx/src/utils instead
|
|
28
|
+
*/
|
|
26
29
|
function serializeTarget({ project, target, config }) {
|
|
27
30
|
return [project, target, config].filter((part) => !!part).join(':');
|
|
28
31
|
}
|