@nx/eslint 20.1.0-canary.20241024-0bea5b2 → 20.1.0-canary.20241026-f84b6e5
Sign up to get free protection for your applications and to get access to all the features.
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@nx/eslint",
|
3
|
-
"version": "20.1.0-canary.
|
3
|
+
"version": "20.1.0-canary.20241026-f84b6e5",
|
4
4
|
"private": false,
|
5
5
|
"description": "The ESLint plugin for Nx contains executors, generators and utilities used for linting JavaScript/TypeScript projects within an Nx workspace.",
|
6
6
|
"repository": {
|
@@ -35,8 +35,8 @@
|
|
35
35
|
"eslint": "^8.0.0 || ^9.0.0"
|
36
36
|
},
|
37
37
|
"dependencies": {
|
38
|
-
"@nx/devkit": "20.1.0-canary.
|
39
|
-
"@nx/js": "20.1.0-canary.
|
38
|
+
"@nx/devkit": "20.1.0-canary.20241026-f84b6e5",
|
39
|
+
"@nx/js": "20.1.0-canary.20241026-f84b6e5",
|
40
40
|
"semver": "^7.5.3",
|
41
41
|
"tslib": "^2.3.0",
|
42
42
|
"typescript": "~5.4.2"
|
@@ -24,13 +24,15 @@ async function run(task, context) {
|
|
24
24
|
hashes.push(res.details.nodes[d]);
|
25
25
|
}
|
26
26
|
}
|
27
|
-
|
27
|
+
const hashResult = {
|
28
28
|
value: (0, devkit_1.hashArray)([command, selfSource, ...hashes, tags]),
|
29
29
|
details: {
|
30
30
|
command,
|
31
31
|
nodes: { [task.target.project]: selfSource, tags, ...nodes },
|
32
32
|
},
|
33
33
|
};
|
34
|
+
hashResult['name'] = 'eslint-hasher';
|
35
|
+
return hashResult;
|
34
36
|
}
|
35
37
|
function allDeps(taskId, taskGraph, projectGraph) {
|
36
38
|
if (!taskGraph.tasks) {
|