@nx/workspace 19.7.0-canary.20240827-61ecd4b → 19.7.0-canary.20240828-13170da

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/workspace",
3
- "version": "19.7.0-canary.20240827-61ecd4b",
3
+ "version": "19.7.0-canary.20240828-13170da",
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.7.0-canary.20240827-61ecd4b",
64
+ "@nx/devkit": "19.7.0-canary.20240828-13170da",
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.7.0-canary.20240827-61ecd4b",
70
- "@nrwl/workspace": "19.7.0-canary.20240827-61ecd4b"
69
+ "nx": "19.7.0-canary.20240828-13170da",
70
+ "@nrwl/workspace": "19.7.0-canary.20240828-13170da"
71
71
  },
72
72
  "publishConfig": {
73
73
  "access": "public"
@@ -12,7 +12,7 @@ function getSourceNodes(sourceFile) {
12
12
  if (node) {
13
13
  result.push(node);
14
14
  if (node.getChildCount(sourceFile) >= 0) {
15
- nodes.unshift(...node.getChildren());
15
+ nodes.unshift(...node.getChildren(sourceFile));
16
16
  }
17
17
  }
18
18
  }