@nrwl/workspace 14.8.7 → 14.9.0-beta.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (266) hide show
  1. package/CHANGELOG.md +1 -1
  2. package/LICENSE +22 -22
  3. package/README.md +5 -26
  4. package/executors.json +4 -2
  5. package/generators.json +7 -52
  6. package/index.d.ts +4 -10
  7. package/index.js +4 -42
  8. package/index.js.map +1 -1
  9. package/migrations.json +20 -1
  10. package/package.json +33 -44
  11. package/presets/core.json +4 -9
  12. package/presets/npm.json +4 -12
  13. package/src/executors/counter/schema.json +1 -0
  14. package/src/executors/run-commands/schema.json +9 -1
  15. package/src/executors/run-script/schema.json +1 -0
  16. package/src/generators/ci-workflow/ci-workflow.d.ts +1 -1
  17. package/src/generators/ci-workflow/ci-workflow.js +13 -0
  18. package/src/generators/ci-workflow/ci-workflow.js.map +1 -1
  19. package/src/generators/ci-workflow/files/azure/azure-pipelines.yml__tmpl__ +0 -2
  20. package/src/generators/ci-workflow/files/bitbucket-pipelines/bitbucket-pipelines.yml__tmpl__ +36 -0
  21. package/src/generators/ci-workflow/files/circleci/.circleci/config.yml__tmpl__ +1 -4
  22. package/src/generators/ci-workflow/files/github/.github/workflows/__workflowFileName__.yml__tmpl__ +3 -3
  23. package/src/generators/ci-workflow/files/gitlab/.gitlab-ci.yml__tmpl__ +47 -0
  24. package/src/generators/ci-workflow/schema.json +5 -3
  25. package/src/generators/convert-to-nx-project/convert-to-nx-project.d.ts +1 -2
  26. package/src/generators/convert-to-nx-project/convert-to-nx-project.js +62 -38
  27. package/src/generators/convert-to-nx-project/convert-to-nx-project.js.map +1 -1
  28. package/src/generators/convert-to-nx-project/schema.d.ts +2 -0
  29. package/src/generators/convert-to-nx-project/schema.json +11 -6
  30. package/src/generators/library/files/lib/__dot__babelrc__tmpl__ +1 -1
  31. package/src/generators/library/files/lib/tsconfig.lib.json +2 -2
  32. package/src/generators/library/library.d.ts +2 -1
  33. package/src/generators/library/library.js +44 -33
  34. package/src/generators/library/library.js.map +1 -1
  35. package/src/generators/library/schema.d.ts +1 -1
  36. package/src/generators/library/schema.json +9 -4
  37. package/src/generators/move/lib/create-project-configuration-in-new-destination.d.ts +3 -0
  38. package/src/generators/move/lib/{move-project-configuration.js → create-project-configuration-in-new-destination.js} +6 -9
  39. package/src/generators/move/lib/create-project-configuration-in-new-destination.js.map +1 -0
  40. package/src/generators/move/lib/{move-project.d.ts → move-project-files.d.ts} +1 -1
  41. package/src/generators/move/lib/{move-project.js → move-project-files.js} +4 -4
  42. package/src/generators/move/lib/move-project-files.js.map +1 -0
  43. package/src/generators/move/lib/update-cypress-config.js +8 -2
  44. package/src/generators/move/lib/update-cypress-config.js.map +1 -1
  45. package/src/generators/move/lib/update-default-project.js +4 -5
  46. package/src/generators/move/lib/update-default-project.js.map +1 -1
  47. package/src/generators/move/lib/update-implicit-dependencies.d.ts +0 -2
  48. package/src/generators/move/lib/update-implicit-dependencies.js +0 -2
  49. package/src/generators/move/lib/update-implicit-dependencies.js.map +1 -1
  50. package/src/generators/move/lib/update-imports.js +28 -18
  51. package/src/generators/move/lib/update-imports.js.map +1 -1
  52. package/src/generators/move/move.js +5 -4
  53. package/src/generators/move/move.js.map +1 -1
  54. package/src/generators/move/schema.json +2 -1
  55. package/src/generators/{workspace/files → new/files-integrated-repo}/__dot__gitignore +2 -2
  56. package/src/generators/{workspace/files → new/files-integrated-repo}/__dot__vscode/extensions.json__tmpl__ +1 -1
  57. package/src/generators/new/files-integrated-repo/package.json__tmpl__ +14 -0
  58. package/src/generators/new/files-package-based-repo/__dot__gitignore +39 -0
  59. package/src/generators/new/files-package-based-repo/__dot__vscode/extensions.json__tmpl__ +8 -0
  60. package/src/generators/new/files-package-based-repo/package.json__tmpl__ +13 -0
  61. package/src/generators/new/files-readme/README.md.template +21 -0
  62. package/src/generators/new/files-root-app/__dot__gitignore +39 -0
  63. package/src/generators/new/files-root-app/__dot__vscode/extensions.json__tmpl__ +6 -0
  64. package/src/generators/new/files-root-app/package.json__tmpl__ +14 -0
  65. package/src/generators/new/generate-preset.d.ts +4 -0
  66. package/src/generators/new/generate-preset.js +131 -0
  67. package/src/generators/new/generate-preset.js.map +1 -0
  68. package/src/generators/new/generate-workspace-files.d.ts +3 -0
  69. package/src/generators/{workspace/workspace.js → new/generate-workspace-files.js} +81 -72
  70. package/src/generators/new/generate-workspace-files.js.map +1 -0
  71. package/src/generators/new/new.d.ts +11 -6
  72. package/src/generators/new/new.js +41 -212
  73. package/src/generators/new/new.js.map +1 -1
  74. package/src/generators/new/schema.json +16 -7
  75. package/src/generators/npm-package/npm-package.js +3 -6
  76. package/src/generators/npm-package/npm-package.js.map +1 -1
  77. package/src/generators/preset/preset.d.ts +1 -2
  78. package/src/generators/preset/preset.js +57 -255
  79. package/src/generators/preset/preset.js.map +1 -1
  80. package/src/generators/preset/schema.d.ts +5 -1
  81. package/src/generators/preset/schema.json +34 -7
  82. package/src/generators/remove/lib/check-project-is-safe-to-remove.d.ts +3 -0
  83. package/src/generators/remove/lib/check-project-is-safe-to-remove.js +26 -0
  84. package/src/generators/remove/lib/check-project-is-safe-to-remove.js.map +1 -0
  85. package/src/generators/remove/lib/check-targets.d.ts +1 -1
  86. package/src/generators/remove/lib/check-targets.js +33 -29
  87. package/src/generators/remove/lib/check-targets.js.map +1 -1
  88. package/src/generators/remove/lib/remove-project-references-in-config.d.ts +3 -0
  89. package/src/generators/remove/lib/remove-project-references-in-config.js +22 -0
  90. package/src/generators/remove/lib/remove-project-references-in-config.js.map +1 -0
  91. package/src/generators/remove/lib/update-jest-config.js +10 -5
  92. package/src/generators/remove/lib/update-jest-config.js.map +1 -1
  93. package/src/generators/remove/lib/update-tsconfig.d.ts +2 -2
  94. package/src/generators/remove/lib/update-tsconfig.js +23 -15
  95. package/src/generators/remove/lib/update-tsconfig.js.map +1 -1
  96. package/src/generators/remove/remove.js +6 -4
  97. package/src/generators/remove/remove.js.map +1 -1
  98. package/src/generators/remove/schema.json +2 -1
  99. package/src/generators/run-commands/run-commands.js +3 -1
  100. package/src/generators/run-commands/run-commands.js.map +1 -1
  101. package/src/generators/run-commands/schema.json +2 -1
  102. package/src/generators/utils/insert-import.js +10 -5
  103. package/src/generators/utils/insert-import.js.map +1 -1
  104. package/src/generators/utils/insert-statement.js +8 -3
  105. package/src/generators/utils/insert-statement.js.map +1 -1
  106. package/src/generators/utils/presets.d.ts +6 -5
  107. package/src/generators/utils/presets.js +5 -4
  108. package/src/generators/utils/presets.js.map +1 -1
  109. package/src/generators/workspace-generator/schema.json +3 -2
  110. package/src/migrations/update-12-5-0/add-target-dependencies.js +2 -2
  111. package/src/migrations/update-12-5-0/add-target-dependencies.js.map +1 -1
  112. package/src/migrations/update-13-0-0/config-locations/config-locations.d.ts +1 -1
  113. package/src/migrations/update-13-0-0/config-locations/config-locations.js +19 -9
  114. package/src/migrations/update-13-0-0/config-locations/config-locations.js.map +1 -1
  115. package/src/migrations/update-13-0-0/set-default-base-if-not-set.js +2 -2
  116. package/src/migrations/update-13-0-0/set-default-base-if-not-set.js.map +1 -1
  117. package/src/migrations/update-13-10-0/update-tasks-runner.js +4 -3
  118. package/src/migrations/update-13-10-0/update-tasks-runner.js.map +1 -1
  119. package/src/migrations/update-13-2-0/set-parallel-default.js +2 -2
  120. package/src/migrations/update-13-2-0/set-parallel-default.js.map +1 -1
  121. package/src/migrations/update-13-6-0/remove-old-task-runner-options.js +3 -3
  122. package/src/migrations/update-13-6-0/remove-old-task-runner-options.js.map +1 -1
  123. package/src/migrations/update-14-0-0/change-npm-script-executor.js +1 -1
  124. package/src/migrations/update-14-0-0/change-npm-script-executor.js.map +1 -1
  125. package/src/migrations/update-14-0-0/change-nx-json-presets.js +3 -3
  126. package/src/migrations/update-14-0-0/change-nx-json-presets.js.map +1 -1
  127. package/src/migrations/update-14-2-0/enable-source-analysis.js +14 -13
  128. package/src/migrations/update-14-2-0/enable-source-analysis.js.map +1 -1
  129. package/src/migrations/update-14-8-0/change-run-commands-executor.js +1 -1
  130. package/src/migrations/update-14-8-0/change-run-commands-executor.js.map +1 -1
  131. package/src/migrations/update-15-7-0/split-configuration-into-project-json-files.d.ts +3 -0
  132. package/src/migrations/update-15-7-0/split-configuration-into-project-json-files.js +15 -0
  133. package/src/migrations/update-15-7-0/split-configuration-into-project-json-files.js.map +1 -0
  134. package/src/utilities/assets.d.ts +2 -2
  135. package/src/utilities/buildable-libs-utils.d.ts +18 -7
  136. package/src/utilities/buildable-libs-utils.js +28 -13
  137. package/src/utilities/buildable-libs-utils.js.map +1 -1
  138. package/src/utilities/plugins/plugin-capabilities.d.ts +1 -3
  139. package/src/utilities/plugins/plugin-capabilities.js +2 -75
  140. package/src/utilities/plugins/plugin-capabilities.js.map +1 -1
  141. package/src/utilities/run-tasks-in-serial.d.ts +6 -0
  142. package/src/utilities/run-tasks-in-serial.js +6 -0
  143. package/src/utilities/run-tasks-in-serial.js.map +1 -1
  144. package/src/utilities/set-default-collection.js +5 -5
  145. package/src/utilities/set-default-collection.js.map +1 -1
  146. package/src/utilities/ts-config.d.ts +5 -0
  147. package/src/utilities/ts-config.js +40 -0
  148. package/src/utilities/ts-config.js.map +1 -0
  149. package/src/utilities/typescript/compilation.d.ts +1 -1
  150. package/src/utilities/typescript/compilation.js +22 -12
  151. package/src/utilities/typescript/compilation.js.map +1 -1
  152. package/src/utilities/typescript/find-nodes.d.ts +5 -2
  153. package/src/utilities/typescript/find-nodes.js +7 -25
  154. package/src/utilities/typescript/find-nodes.js.map +1 -1
  155. package/src/utilities/typescript/get-source-nodes.d.ts +4 -1
  156. package/src/utilities/typescript/get-source-nodes.js +3 -0
  157. package/src/utilities/typescript/get-source-nodes.js.map +1 -1
  158. package/src/utilities/typescript.d.ts +8 -4
  159. package/src/utilities/typescript.js +21 -38
  160. package/src/utilities/typescript.js.map +1 -1
  161. package/src/utilities/version-utils.d.ts +3 -0
  162. package/src/utilities/version-utils.js +7 -12
  163. package/src/utilities/version-utils.js.map +1 -1
  164. package/src/utils/ast-utils.d.ts +0 -123
  165. package/src/utils/ast-utils.js +5 -546
  166. package/src/utils/ast-utils.js.map +1 -1
  167. package/src/utils/cli-config-utils.d.ts +4 -3
  168. package/src/utils/cli-config-utils.js +4 -45
  169. package/src/utils/cli-config-utils.js.map +1 -1
  170. package/src/utils/lint.d.ts +0 -32
  171. package/src/utils/lint.js +0 -262
  172. package/src/utils/lint.js.map +1 -1
  173. package/src/utils/project-type.d.ts +1 -3
  174. package/src/utils/project-type.js +1 -8
  175. package/src/utils/project-type.js.map +1 -1
  176. package/src/utils/rules/add-install-task.d.ts +1 -1
  177. package/src/utils/rules/add-install-task.js +2 -2
  178. package/src/utils/rules/add-install-task.js.map +1 -1
  179. package/src/utils/rules/deleteFile.d.ts +1 -1
  180. package/src/utils/rules/format-files.js +0 -19
  181. package/src/utils/rules/format-files.js.map +1 -1
  182. package/src/utils/rules/workspace.d.ts +1 -1
  183. package/src/utils/strings.d.ts +12 -0
  184. package/src/utils/strings.js +12 -0
  185. package/src/utils/strings.js.map +1 -1
  186. package/src/utils/testing-utils.d.ts +1 -1
  187. package/src/utils/testing-utils.js +6 -6
  188. package/src/utils/testing-utils.js.map +1 -1
  189. package/src/utils/testing.d.ts +1 -1
  190. package/src/utils/versions.d.ts +3 -4
  191. package/src/utils/versions.js +6 -5
  192. package/src/utils/versions.js.map +1 -1
  193. package/src/utils/workspace.d.ts +1 -1
  194. package/src/generators/convert-to-nx-project/utils/get-project-configuration-path.d.ts +0 -2
  195. package/src/generators/convert-to-nx-project/utils/get-project-configuration-path.js +0 -9
  196. package/src/generators/convert-to-nx-project/utils/get-project-configuration-path.js.map +0 -1
  197. package/src/generators/move/lib/move-project-configuration.d.ts +0 -3
  198. package/src/generators/move/lib/move-project-configuration.js.map +0 -1
  199. package/src/generators/move/lib/move-project.js.map +0 -1
  200. package/src/generators/preset/files/pnpm-workspace/pnpm-workspace.yaml +0 -2
  201. package/src/generators/remove/lib/remove-project-config.d.ts +0 -8
  202. package/src/generators/remove/lib/remove-project-config.js +0 -32
  203. package/src/generators/remove/lib/remove-project-config.js.map +0 -1
  204. package/src/generators/utils/decorate-angular-cli.js__tmpl__ +0 -69
  205. package/src/generators/workspace/files/README.md__tmpl__ +0 -186
  206. package/src/generators/workspace/files/__dot__prettierignore +0 -4
  207. package/src/generators/workspace/files/package.json__tmpl__ +0 -18
  208. package/src/generators/workspace/schema.d.ts +0 -15
  209. package/src/generators/workspace/schema.json +0 -77
  210. package/src/generators/workspace/workspace.d.ts +0 -7
  211. package/src/generators/workspace/workspace.js.map +0 -1
  212. package/src/tslint/nxEnforceModuleBoundariesRule.d.ts +0 -14
  213. package/src/tslint/nxEnforceModuleBoundariesRule.js +0 -177
  214. package/src/tslint/nxEnforceModuleBoundariesRule.js.map +0 -1
  215. package/src/utilities/ast-utils.d.ts +0 -22
  216. package/src/utilities/ast-utils.js +0 -182
  217. package/src/utilities/ast-utils.js.map +0 -1
  218. package/src/utilities/create-package-json.d.ts +0 -10
  219. package/src/utilities/create-package-json.js +0 -87
  220. package/src/utilities/create-package-json.js.map +0 -1
  221. package/src/utilities/executor-options-utils.d.ts +0 -13
  222. package/src/utilities/executor-options-utils.js +0 -36
  223. package/src/utilities/executor-options-utils.js.map +0 -1
  224. package/src/utilities/generate-globs.d.ts +0 -6
  225. package/src/utilities/generate-globs.js +0 -75
  226. package/src/utilities/generate-globs.js.map +0 -1
  227. package/src/utilities/prettier.d.ts +0 -6
  228. package/src/utilities/prettier.js +0 -38
  229. package/src/utilities/prettier.js.map +0 -1
  230. package/src/utils/app-root.d.ts +0 -1
  231. package/src/utils/app-root.js +0 -8
  232. package/src/utils/app-root.js.map +0 -1
  233. package/src/utils/graph-utils.d.ts +0 -5
  234. package/src/utils/graph-utils.js +0 -116
  235. package/src/utils/graph-utils.js.map +0 -1
  236. package/src/utils/rules/check-project-exists.d.ts +0 -10
  237. package/src/utils/rules/check-project-exists.js +0 -24
  238. package/src/utils/rules/check-project-exists.js.map +0 -1
  239. package/src/utils/rules/move-npm-packages.d.ts +0 -11
  240. package/src/utils/rules/move-npm-packages.js +0 -76
  241. package/src/utils/rules/move-npm-packages.js.map +0 -1
  242. package/src/utils/rules/rename-npm-packages.d.ts +0 -10
  243. package/src/utils/rules/rename-npm-packages.js +0 -81
  244. package/src/utils/rules/rename-npm-packages.js.map +0 -1
  245. package/src/utils/rules/rename-package-imports.d.ts +0 -10
  246. package/src/utils/rules/rename-package-imports.js +0 -58
  247. package/src/utils/rules/rename-package-imports.js.map +0 -1
  248. package/src/utils/rules/to-js.d.ts +0 -8
  249. package/src/utils/rules/to-js.js +0 -77
  250. package/src/utils/rules/to-js.js.map +0 -1
  251. package/src/utils/rules/update-karma-conf.d.ts +0 -8
  252. package/src/utils/rules/update-karma-conf.js +0 -36
  253. package/src/utils/rules/update-karma-conf.js.map +0 -1
  254. package/src/utils/runtime-lint-utils.d.ts +0 -80
  255. package/src/utils/runtime-lint-utils.js +0 -307
  256. package/src/utils/runtime-lint-utils.js.map +0 -1
  257. package/src/utils/update-packages-in-package-json.d.ts +0 -3
  258. package/src/utils/update-packages-in-package-json.js +0 -56
  259. package/src/utils/update-packages-in-package-json.js.map +0 -1
  260. package/src/utils/update-task.d.ts +0 -2
  261. package/src/utils/update-task.js +0 -83
  262. package/src/utils/update-task.js.map +0 -1
  263. /package/src/generators/{workspace/files → library/files/root}/tsconfig.base.json +0 -0
  264. /package/src/generators/{workspace/files → new/files-integrated-repo}/__dot__editorconfig +0 -0
  265. /package/src/generators/{workspace/files → new/files-integrated-repo}/tools/generators/.gitkeep +0 -0
  266. /package/src/generators/{workspace/files → new/files-integrated-repo}/tools/tsconfig.tools.json +0 -0
@@ -1,177 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.Rule = void 0;
4
- const Lint = require("tslint");
5
- const devkit_1 = require("@nrwl/devkit");
6
- const runtime_lint_utils_1 = require("../utils/runtime-lint-utils");
7
- const path_1 = require("path");
8
- const target_project_locator_1 = require("nx/src/utils/target-project-locator");
9
- const graph_utils_1 = require("../utils/graph-utils");
10
- const fileutils_1 = require("../utilities/fileutils");
11
- class Rule extends Lint.Rules.AbstractRule {
12
- constructor(options, projectPath, projectGraph, targetProjectLocator, workspaceLayout) {
13
- super(options);
14
- this.projectPath = projectPath;
15
- this.projectGraph = projectGraph;
16
- this.targetProjectLocator = targetProjectLocator;
17
- this.workspaceLayout = workspaceLayout;
18
- if (!projectPath) {
19
- this.projectPath = (0, path_1.normalize)(devkit_1.workspaceRoot);
20
- if (!global.projectGraph) {
21
- const nxJson = (0, devkit_1.readNxJson)();
22
- global.workspaceLayout = nxJson.workspaceLayout;
23
- /**
24
- * Because there are a number of ways in which the rule can be invoked (executor vs TSLint CLI vs IDE Plugin),
25
- * the ProjectGraph may or may not exist by the time the lint rule is invoked for the first time.
26
- */
27
- try {
28
- global.projectGraph = (0, runtime_lint_utils_1.mapProjectGraphFiles)((0, devkit_1.readCachedProjectGraph)());
29
- }
30
- catch (_a) { }
31
- }
32
- this.workspaceLayout = global.workspaceLayout;
33
- this.projectGraph = global.projectGraph;
34
- if (!global.targetProjectLocator && this.projectGraph) {
35
- global.targetProjectLocator = new target_project_locator_1.TargetProjectLocator(this.projectGraph.nodes, this.projectGraph.externalNodes);
36
- }
37
- this.targetProjectLocator = global.targetProjectLocator;
38
- }
39
- }
40
- apply(sourceFile) {
41
- if (!this.projectGraph)
42
- return [];
43
- return this.applyWithWalker(new EnforceModuleBoundariesWalker(sourceFile, this.getOptions(), this.projectPath, this.projectGraph, this.targetProjectLocator, this.workspaceLayout));
44
- }
45
- }
46
- exports.Rule = Rule;
47
- class EnforceModuleBoundariesWalker extends Lint.RuleWalker {
48
- constructor(sourceFile, options, projectPath, projectGraph, targetProjectLocator, workspaceLayout) {
49
- super(sourceFile, options);
50
- this.projectPath = projectPath;
51
- this.projectGraph = projectGraph;
52
- this.targetProjectLocator = targetProjectLocator;
53
- this.workspaceLayout = workspaceLayout;
54
- this.enforceBuildableLibDependency = false; // for backwards compat
55
- this.allowCircularSelfDependency = false;
56
- this.allow = Array.isArray(this.getOptions()[0].allow)
57
- ? this.getOptions()[0].allow.map((a) => `${a}`)
58
- : [];
59
- this.depConstraints = Array.isArray(this.getOptions()[0].depConstraints)
60
- ? this.getOptions()[0].depConstraints
61
- : [];
62
- this.enforceBuildableLibDependency =
63
- this.getOptions()[0].enforceBuildableLibDependency === true;
64
- this.allowCircularSelfDependency =
65
- this.getOptions()[0].allowCircularSelfDependency === true;
66
- }
67
- visitImportDeclaration(node) {
68
- const imp = node.moduleSpecifier
69
- .getText()
70
- .substring(1, node.moduleSpecifier.getText().length - 1);
71
- // whitelisted import
72
- if (this.allow.some((a) => (0, runtime_lint_utils_1.matchImportWithWildcard)(a, imp))) {
73
- super.visitImportDeclaration(node);
74
- return;
75
- }
76
- const filePath = (0, runtime_lint_utils_1.getSourceFilePath)(this.getSourceFile().fileName, this.projectPath);
77
- const sourceProject = (0, runtime_lint_utils_1.findSourceProject)(this.projectGraph, filePath);
78
- if (!sourceProject) {
79
- super.visitImportDeclaration(node);
80
- return;
81
- }
82
- let targetProject = (0, runtime_lint_utils_1.getTargetProjectBasedOnRelativeImport)(imp, this.projectPath, this.projectGraph, filePath);
83
- // check for relative and absolute imports
84
- if ((targetProject && sourceProject !== targetProject) ||
85
- (0, runtime_lint_utils_1.isAbsoluteImportIntoAnotherProject)(imp, this.workspaceLayout)) {
86
- this.addFailureAt(node.getStart(), node.getWidth(), `libraries cannot be imported by a relative or absolute path, and must begin with a npm scope`);
87
- return;
88
- }
89
- targetProject =
90
- targetProject ||
91
- (0, runtime_lint_utils_1.findProjectUsingImport)(this.projectGraph, this.targetProjectLocator, filePath, imp);
92
- // If source or target are not part of an nx workspace, return.
93
- if (!targetProject || targetProject.type === 'npm') {
94
- super.visitImportDeclaration(node);
95
- return;
96
- }
97
- // same project => allow
98
- if (sourceProject === targetProject) {
99
- if (!this.allowCircularSelfDependency &&
100
- !(0, fileutils_1.isRelativePath)(imp) &&
101
- !(0, runtime_lint_utils_1.isAngularSecondaryEntrypoint)(this.targetProjectLocator, imp)) {
102
- const error = `Projects should use relative imports to import from other files within the same project. Use "./path/to/file" instead of import from "${imp}"`;
103
- this.addFailureAt(node.getStart(), node.getWidth(), error);
104
- }
105
- else {
106
- super.visitImportDeclaration(node);
107
- }
108
- return;
109
- }
110
- // check for circular dependency
111
- const circularPath = (0, graph_utils_1.checkCircularPath)(this.projectGraph, sourceProject, targetProject);
112
- if (circularPath.length !== 0) {
113
- const path = circularPath.reduce((acc, v) => `${acc} -> ${v.name}`, sourceProject.name);
114
- const circularFilePath = (0, graph_utils_1.findFilesInCircularPath)(circularPath);
115
- const filePaths = circularFilePath
116
- .map((files) => (files.length > 1 ? `[${files.join(',')}]` : files[0]))
117
- .reduce((acc, files) => `${acc}\n- ${files}`, `- ${filePath}`);
118
- const error = `Circular dependency between "${sourceProject.name}" and "${targetProject.name}" detected: ${path}\n\nCircular file chain:\n${filePaths}`;
119
- this.addFailureAt(node.getStart(), node.getWidth(), error);
120
- return;
121
- }
122
- // cannot import apps
123
- if (targetProject.type === 'app') {
124
- this.addFailureAt(node.getStart(), node.getWidth(), 'imports of apps are forbidden');
125
- return;
126
- }
127
- // cannot import e2e projects
128
- if (targetProject.type === 'e2e') {
129
- this.addFailureAt(node.getStart(), node.getWidth(), 'imports of e2e projects are forbidden');
130
- return;
131
- }
132
- // buildable-lib is not allowed to import non-buildable-lib
133
- if (this.enforceBuildableLibDependency === true &&
134
- sourceProject.type === 'lib' &&
135
- targetProject.type === 'lib') {
136
- if ((0, runtime_lint_utils_1.hasBuildExecutor)(sourceProject) && !(0, runtime_lint_utils_1.hasBuildExecutor)(targetProject)) {
137
- this.addFailureAt(node.getStart(), node.getWidth(), 'buildable libraries cannot import non-buildable libraries');
138
- return;
139
- }
140
- }
141
- // if we import a library using loadChildren, we should not import it using es6imports
142
- if ((0, runtime_lint_utils_1.onlyLoadChildren)(this.projectGraph, sourceProject.name, targetProject.name, [])) {
143
- this.addFailureAt(node.getStart(), node.getWidth(), 'imports of lazy-loaded libraries are forbidden');
144
- return;
145
- }
146
- // check that dependency constraints are satisfied
147
- if (this.depConstraints.length > 0) {
148
- const constraints = (0, runtime_lint_utils_1.findConstraintsFor)(this.depConstraints, sourceProject);
149
- // when no constrains found => error. Force the user to provision them.
150
- if (constraints.length === 0) {
151
- this.addFailureAt(node.getStart(), node.getWidth(), `A project without tags matching at least one constraint cannot depend on any libraries`);
152
- return;
153
- }
154
- for (let constraint of constraints) {
155
- if (constraint.onlyDependOnLibsWithTags &&
156
- (0, runtime_lint_utils_1.hasNoneOfTheseTags)(targetProject, constraint.onlyDependOnLibsWithTags)) {
157
- const error = `A project tagged with "${constraint.sourceTag}" can only depend on libs tagged with ${(0, runtime_lint_utils_1.stringifyTags)(constraint.onlyDependOnLibsWithTags)}`;
158
- this.addFailureAt(node.getStart(), node.getWidth(), error);
159
- return;
160
- }
161
- if (constraint.notDependOnLibsWithTags &&
162
- constraint.notDependOnLibsWithTags.length) {
163
- const projectPaths = (0, runtime_lint_utils_1.findDependenciesWithTags)(targetProject, constraint.notDependOnLibsWithTags, this.projectGraph);
164
- if (projectPaths.length > 0) {
165
- const error = `A project tagged with "${constraint.sourceTag}" can not depend on libs tagged with ${(0, runtime_lint_utils_1.stringifyTags)(constraint.notDependOnLibsWithTags)}\n\nViolation detected in:\n${projectPaths
166
- .map((projectPath) => `- ${projectPath.map((p) => p.name).join(' -> ')}`)
167
- .join('\n')}`;
168
- this.addFailureAt(node.getStart(), node.getWidth(), error);
169
- return;
170
- }
171
- }
172
- }
173
- }
174
- super.visitImportDeclaration(node);
175
- }
176
- }
177
- //# sourceMappingURL=nxEnforceModuleBoundariesRule.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"nxEnforceModuleBoundariesRule.js","sourceRoot":"","sources":["../../../../../packages/workspace/src/tslint/nxEnforceModuleBoundariesRule.ts"],"names":[],"mappings":"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"}
@@ -1,22 +0,0 @@
1
- import type { Tree } from '@nrwl/devkit';
2
- import * as ts from 'typescript';
3
- export declare function insertChange(host: Tree, sourceFile: ts.SourceFile, filePath: string, insertPosition: number, contentToInsert: string): ts.SourceFile;
4
- export declare function replaceChange(host: Tree, sourceFile: ts.SourceFile, filePath: string, insertPosition: number, contentToInsert: string, oldContent: string): ts.SourceFile;
5
- export declare function removeChange(host: Tree, sourceFile: ts.SourceFile, filePath: string, removePosition: number, contentToRemove: string): ts.SourceFile;
6
- export declare function insertImport(host: Tree, source: ts.SourceFile, fileToEdit: string, symbolName: string, fileName: string, isDefault?: boolean): ts.SourceFile;
7
- export declare function addGlobal(host: Tree, source: ts.SourceFile, modulePath: string, statement: string): ts.SourceFile;
8
- export declare function getImport(source: ts.SourceFile, predicate: (a: any) => boolean): {
9
- moduleSpec: string;
10
- bindings: string[];
11
- }[];
12
- export declare function replaceNodeValue(host: Tree, sourceFile: ts.SourceFile, modulePath: string, node: ts.Node, content: string): ts.SourceFile;
13
- export declare function addParameterToConstructor(tree: Tree, source: ts.SourceFile, modulePath: string, opts: {
14
- className: string;
15
- param: string;
16
- }): ts.SourceFile;
17
- export declare function addMethod(tree: Tree, source: ts.SourceFile, modulePath: string, opts: {
18
- className: string;
19
- methodHeader: string;
20
- body?: string;
21
- }): ts.SourceFile;
22
- export declare function findClass(source: ts.SourceFile, className: string, silent?: boolean): ts.ClassDeclaration;
@@ -1,182 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.findClass = exports.addMethod = exports.addParameterToConstructor = exports.replaceNodeValue = exports.getImport = exports.addGlobal = exports.insertImport = exports.removeChange = exports.replaceChange = exports.insertChange = void 0;
4
- const ts = require("typescript");
5
- const typescript_1 = require("./typescript");
6
- const find_nodes_1 = require("./typescript/find-nodes");
7
- function nodesByPosition(first, second) {
8
- return first.getStart() - second.getStart();
9
- }
10
- function updateTsSourceFile(host, sourceFile, filePath) {
11
- const newFileContents = host.read(filePath).toString('utf-8');
12
- return sourceFile.update(newFileContents, {
13
- newLength: newFileContents.length,
14
- span: {
15
- length: sourceFile.text.length,
16
- start: 0,
17
- },
18
- });
19
- }
20
- function insertChange(host, sourceFile, filePath, insertPosition, contentToInsert) {
21
- const content = host.read(filePath).toString();
22
- const prefix = content.substring(0, insertPosition);
23
- const suffix = content.substring(insertPosition);
24
- host.write(filePath, `${prefix}${contentToInsert}${suffix}`);
25
- return updateTsSourceFile(host, sourceFile, filePath);
26
- }
27
- exports.insertChange = insertChange;
28
- function replaceChange(host, sourceFile, filePath, insertPosition, contentToInsert, oldContent) {
29
- const content = host.read(filePath, 'utf-8');
30
- const prefix = content.substring(0, insertPosition);
31
- const suffix = content.substring(insertPosition + oldContent.length);
32
- const text = content.substring(insertPosition, insertPosition + oldContent.length);
33
- if (text !== oldContent) {
34
- throw new Error(`Invalid replace: "${text}" != "${oldContent}".`);
35
- }
36
- host.write(filePath, `${prefix}${contentToInsert}${suffix}`);
37
- return updateTsSourceFile(host, sourceFile, filePath);
38
- }
39
- exports.replaceChange = replaceChange;
40
- function removeChange(host, sourceFile, filePath, removePosition, contentToRemove) {
41
- const content = host.read(filePath).toString();
42
- const prefix = content.substring(0, removePosition);
43
- const suffix = content.substring(removePosition + contentToRemove.length);
44
- host.write(filePath, `${prefix}${suffix}`);
45
- return updateTsSourceFile(host, sourceFile, filePath);
46
- }
47
- exports.removeChange = removeChange;
48
- function insertImport(host, source, fileToEdit, symbolName, fileName, isDefault = false) {
49
- const rootNode = source;
50
- const allImports = (0, find_nodes_1.findNodes)(rootNode, ts.SyntaxKind.ImportDeclaration);
51
- // get nodes that map to import statements from the file fileName
52
- const relevantImports = allImports.filter((node) => {
53
- // StringLiteral of the ImportDeclaration is the import file (fileName in this case).
54
- const importFiles = node
55
- .getChildren()
56
- .filter((child) => child.kind === ts.SyntaxKind.StringLiteral)
57
- .map((n) => n.text);
58
- return importFiles.filter((file) => file === fileName).length === 1;
59
- });
60
- if (relevantImports.length > 0) {
61
- let importsAsterisk = false;
62
- // imports from import file
63
- const imports = [];
64
- relevantImports.forEach((n) => {
65
- Array.prototype.push.apply(imports, (0, find_nodes_1.findNodes)(n, ts.SyntaxKind.Identifier));
66
- if ((0, find_nodes_1.findNodes)(n, ts.SyntaxKind.AsteriskToken).length > 0) {
67
- importsAsterisk = true;
68
- }
69
- });
70
- // if imports * from fileName, don't add symbolName
71
- if (importsAsterisk) {
72
- return source;
73
- }
74
- const importTextNodes = imports.filter((n) => n.text === symbolName);
75
- // insert import if it's not there
76
- if (importTextNodes.length === 0) {
77
- const fallbackPos = (0, find_nodes_1.findNodes)(relevantImports[0], ts.SyntaxKind.CloseBraceToken)[0].getStart() ||
78
- (0, find_nodes_1.findNodes)(relevantImports[0], ts.SyntaxKind.FromKeyword)[0].getStart();
79
- return insertAfterLastOccurrence(host, source, imports, `, ${symbolName}`, fileToEdit, fallbackPos);
80
- }
81
- return source;
82
- }
83
- // no such import declaration exists
84
- const useStrict = (0, find_nodes_1.findNodes)(rootNode, ts.SyntaxKind.StringLiteral).filter((n) => n.text === 'use strict');
85
- let fallbackPos = 0;
86
- if (useStrict.length > 0) {
87
- fallbackPos = useStrict[0].end;
88
- }
89
- const open = isDefault ? '' : '{ ';
90
- const close = isDefault ? '' : ' }';
91
- // if there are no imports or 'use strict' statement, insert import at beginning of file
92
- const insertAtBeginning = allImports.length === 0 && useStrict.length === 0;
93
- const separator = insertAtBeginning ? '' : ';\n';
94
- const toInsert = `${separator}import ${open}${symbolName}${close}` +
95
- ` from '${fileName}'${insertAtBeginning ? ';\n' : ''}`;
96
- return insertAfterLastOccurrence(host, source, allImports, toInsert, fileToEdit, fallbackPos, ts.SyntaxKind.StringLiteral);
97
- }
98
- exports.insertImport = insertImport;
99
- function insertAfterLastOccurrence(host, sourceFile, nodes, toInsert, pathToFile, fallbackPos, syntaxKind) {
100
- // sort() has a side effect, so make a copy so that we won't overwrite the parent's object.
101
- let lastItem = [...nodes].sort(nodesByPosition).pop();
102
- if (!lastItem) {
103
- throw new Error();
104
- }
105
- if (syntaxKind) {
106
- lastItem = (0, find_nodes_1.findNodes)(lastItem, syntaxKind).sort(nodesByPosition).pop();
107
- }
108
- if (!lastItem && fallbackPos == undefined) {
109
- throw new Error(`tried to insert ${toInsert} as first occurrence with no fallback position`);
110
- }
111
- const lastItemPosition = lastItem ? lastItem.getEnd() : fallbackPos;
112
- return insertChange(host, sourceFile, pathToFile, lastItemPosition, toInsert);
113
- }
114
- function addGlobal(host, source, modulePath, statement) {
115
- const allImports = (0, find_nodes_1.findNodes)(source, ts.SyntaxKind.ImportDeclaration);
116
- if (allImports.length > 0) {
117
- const lastImport = allImports[allImports.length - 1];
118
- return insertChange(host, source, modulePath, lastImport.end + 1, `\n${statement}\n`);
119
- }
120
- else {
121
- return insertChange(host, source, modulePath, 0, `${statement}\n`);
122
- }
123
- }
124
- exports.addGlobal = addGlobal;
125
- function getImport(source, predicate) {
126
- const allImports = (0, find_nodes_1.findNodes)(source, ts.SyntaxKind.ImportDeclaration);
127
- const matching = allImports.filter((i) => predicate(i.moduleSpecifier.getText()));
128
- return matching.map((i) => {
129
- const moduleSpec = i.moduleSpecifier
130
- .getText()
131
- .substring(1, i.moduleSpecifier.getText().length - 1);
132
- const t = i.importClause.namedBindings.getText();
133
- const bindings = t
134
- .replace('{', '')
135
- .replace('}', '')
136
- .split(',')
137
- .map((q) => q.trim());
138
- return { moduleSpec, bindings };
139
- });
140
- }
141
- exports.getImport = getImport;
142
- function replaceNodeValue(host, sourceFile, modulePath, node, content) {
143
- return replaceChange(host, sourceFile, modulePath, node.getStart(node.getSourceFile()), content, node.getText());
144
- }
145
- exports.replaceNodeValue = replaceNodeValue;
146
- function addParameterToConstructor(tree, source, modulePath, opts) {
147
- const clazz = findClass(source, opts.className);
148
- const constructor = clazz.members.filter((m) => m.kind === ts.SyntaxKind.Constructor)[0];
149
- if (constructor) {
150
- throw new Error('Should be tested'); // TODO: check this
151
- }
152
- return addMethod(tree, source, modulePath, {
153
- className: opts.className,
154
- methodHeader: `constructor(${opts.param})`,
155
- });
156
- }
157
- exports.addParameterToConstructor = addParameterToConstructor;
158
- function addMethod(tree, source, modulePath, opts) {
159
- const clazz = findClass(source, opts.className);
160
- const body = opts.body
161
- ? `
162
- ${opts.methodHeader} {
163
- ${opts.body}
164
- }
165
- `
166
- : `
167
- ${opts.methodHeader} {}
168
- `;
169
- return insertChange(tree, source, modulePath, clazz.end - 1, body);
170
- }
171
- exports.addMethod = addMethod;
172
- function findClass(source, className, silent = false) {
173
- const nodes = (0, typescript_1.getSourceNodes)(source);
174
- const clazz = nodes.filter((n) => n.kind === ts.SyntaxKind.ClassDeclaration &&
175
- n.name.text === className)[0];
176
- if (!clazz && !silent) {
177
- throw new Error(`Cannot find class '${className}'.`);
178
- }
179
- return clazz;
180
- }
181
- exports.findClass = findClass;
182
- //# sourceMappingURL=ast-utils.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"ast-utils.js","sourceRoot":"","sources":["../../../../../packages/workspace/src/utilities/ast-utils.ts"],"names":[],"mappings":"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"}
@@ -1,10 +0,0 @@
1
- import type { ProjectGraph } from '@nrwl/devkit';
2
- /**
3
- * Creates a package.json in the output directory for support to install dependencies within containers.
4
- *
5
- * If a package.json exists in the project, it will reuse that.
6
- */
7
- export declare function createPackageJson(projectName: string, graph: ProjectGraph, options: {
8
- projectRoot?: string;
9
- root?: string;
10
- }): any;
@@ -1,87 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.createPackageJson = void 0;
4
- const devkit_1 = require("@nrwl/devkit");
5
- const object_sort_1 = require("nx/src/utils/object-sort");
6
- /**
7
- * Creates a package.json in the output directory for support to install dependencies within containers.
8
- *
9
- * If a package.json exists in the project, it will reuse that.
10
- */
11
- function createPackageJson(projectName, graph, options) {
12
- const npmDeps = findAllNpmDeps(projectName, graph);
13
- // default package.json if one does not exist
14
- let packageJson = {
15
- name: projectName,
16
- version: '0.0.1',
17
- dependencies: {},
18
- devDependencies: {},
19
- };
20
- try {
21
- packageJson = (0, devkit_1.readJsonFile)(`${options.projectRoot}/package.json`);
22
- if (!packageJson.dependencies) {
23
- packageJson.dependencies = {};
24
- }
25
- if (!packageJson.devDependencies) {
26
- packageJson.devDependencies = {};
27
- }
28
- }
29
- catch (e) { }
30
- const rootPackageJson = (0, devkit_1.readJsonFile)(`${options.root}/package.json`);
31
- Object.entries(npmDeps).forEach(([packageName, version]) => {
32
- var _a;
33
- if ((_a = rootPackageJson.devDependencies) === null || _a === void 0 ? void 0 : _a[packageName]) {
34
- packageJson.devDependencies[packageName] = version;
35
- }
36
- else {
37
- packageJson.dependencies[packageName] = version;
38
- }
39
- });
40
- packageJson.devDependencies && (packageJson.devDependencies = (0, object_sort_1.sortObjectByKeys)(packageJson.devDependencies));
41
- packageJson.dependencies && (packageJson.dependencies = (0, object_sort_1.sortObjectByKeys)(packageJson.dependencies));
42
- return packageJson;
43
- }
44
- exports.createPackageJson = createPackageJson;
45
- function findAllNpmDeps(projectName, graph, list = {}, seen = new Set()) {
46
- var _a;
47
- if (seen.has(projectName)) {
48
- return list;
49
- }
50
- seen.add(projectName);
51
- const node = graph.externalNodes[projectName];
52
- if (node) {
53
- list[node.data.packageName] = node.data.version;
54
- recursivelyCollectPeerDependencies(node.name, graph, list);
55
- }
56
- (_a = graph.dependencies[projectName]) === null || _a === void 0 ? void 0 : _a.forEach((dep) => {
57
- findAllNpmDeps(dep.target, graph, list, seen);
58
- });
59
- return list;
60
- }
61
- function recursivelyCollectPeerDependencies(projectName, graph, list = {}, seen = new Set()) {
62
- const npmPackage = graph.externalNodes[projectName];
63
- if (!npmPackage || seen.has(projectName)) {
64
- return list;
65
- }
66
- seen.add(projectName);
67
- const packageName = npmPackage.data.packageName;
68
- try {
69
- const packageJson = require(`${packageName}/package.json`);
70
- if (!packageJson.peerDependencies) {
71
- return list;
72
- }
73
- Object.keys(packageJson.peerDependencies)
74
- .map((dependencyName) => `npm:${dependencyName}`)
75
- .map((dependency) => graph.externalNodes[dependency])
76
- .filter(Boolean)
77
- .forEach((node) => {
78
- list[node.data.packageName] = node.data.version;
79
- recursivelyCollectPeerDependencies(node.name, graph, list, seen);
80
- });
81
- return list;
82
- }
83
- catch (e) {
84
- return list;
85
- }
86
- }
87
- //# sourceMappingURL=create-package-json.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"create-package-json.js","sourceRoot":"","sources":["../../../../../packages/workspace/src/utilities/create-package-json.ts"],"names":[],"mappings":";;;AACA,yCAA4C;AAC5C,0DAA4D;AAE5D;;;;GAIG;AACH,SAAgB,iBAAiB,CAC/B,WAAmB,EACnB,KAAmB,EACnB,OAGC;IAED,MAAM,OAAO,GAAG,cAAc,CAAC,WAAW,EAAE,KAAK,CAAC,CAAC;IACnD,6CAA6C;IAC7C,IAAI,WAAW,GAAG;QAChB,IAAI,EAAE,WAAW;QACjB,OAAO,EAAE,OAAO;QAChB,YAAY,EAAE,EAAE;QAChB,eAAe,EAAE,EAAE;KACpB,CAAC;IACF,IAAI;QACF,WAAW,GAAG,IAAA,qBAAY,EAAC,GAAG,OAAO,CAAC,WAAW,eAAe,CAAC,CAAC;QAClE,IAAI,CAAC,WAAW,CAAC,YAAY,EAAE;YAC7B,WAAW,CAAC,YAAY,GAAG,EAAE,CAAC;SAC/B;QACD,IAAI,CAAC,WAAW,CAAC,eAAe,EAAE;YAChC,WAAW,CAAC,eAAe,GAAG,EAAE,CAAC;SAClC;KACF;IAAC,OAAO,CAAC,EAAE,GAAE;IAEd,MAAM,eAAe,GAAG,IAAA,qBAAY,EAAC,GAAG,OAAO,CAAC,IAAI,eAAe,CAAC,CAAC;IACrE,MAAM,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,WAAW,EAAE,OAAO,CAAC,EAAE,EAAE;;QACzD,IAAI,MAAA,eAAe,CAAC,eAAe,0CAAG,WAAW,CAAC,EAAE;YAClD,WAAW,CAAC,eAAe,CAAC,WAAW,CAAC,GAAG,OAAO,CAAC;SACpD;aAAM;YACL,WAAW,CAAC,YAAY,CAAC,WAAW,CAAC,GAAG,OAAO,CAAC;SACjD;IACH,CAAC,CAAC,CAAC;IAEH,WAAW,CAAC,eAAe,KAA3B,WAAW,CAAC,eAAe,GAAK,IAAA,8BAAgB,EAAC,WAAW,CAAC,eAAe,CAAC,EAAC;IAC9E,WAAW,CAAC,YAAY,KAAxB,WAAW,CAAC,YAAY,GAAK,IAAA,8BAAgB,EAAC,WAAW,CAAC,YAAY,CAAC,EAAC;IAExE,OAAO,WAAW,CAAC;AACrB,CAAC;AAvCD,8CAuCC;AAED,SAAS,cAAc,CACrB,WAAmB,EACnB,KAAmB,EACnB,OAA0C,EAAE,EAC5C,OAAO,IAAI,GAAG,EAAU;;IAExB,IAAI,IAAI,CAAC,GAAG,CAAC,WAAW,CAAC,EAAE;QACzB,OAAO,IAAI,CAAC;KACb;IAED,IAAI,CAAC,GAAG,CAAC,WAAW,CAAC,CAAC;IAEtB,MAAM,IAAI,GAAG,KAAK,CAAC,aAAa,CAAC,WAAW,CAAC,CAAC;IAE9C,IAAI,IAAI,EAAE;QACR,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,WAAW,CAAC,GAAG,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC;QAChD,kCAAkC,CAAC,IAAI,CAAC,IAAI,EAAE,KAAK,EAAE,IAAI,CAAC,CAAC;KAC5D;IACD,MAAA,KAAK,CAAC,YAAY,CAAC,WAAW,CAAC,0CAAE,OAAO,CAAC,CAAC,GAAG,EAAE,EAAE;QAC/C,cAAc,CAAC,GAAG,CAAC,MAAM,EAAE,KAAK,EAAE,IAAI,EAAE,IAAI,CAAC,CAAC;IAChD,CAAC,CAAC,CAAC;IAEH,OAAO,IAAI,CAAC;AACd,CAAC;AAED,SAAS,kCAAkC,CACzC,WAAmB,EACnB,KAAmB,EACnB,OAA0C,EAAE,EAC5C,OAAO,IAAI,GAAG,EAAU;IAExB,MAAM,UAAU,GAAG,KAAK,CAAC,aAAa,CAAC,WAAW,CAAC,CAAC;IACpD,IAAI,CAAC,UAAU,IAAI,IAAI,CAAC,GAAG,CAAC,WAAW,CAAC,EAAE;QACxC,OAAO,IAAI,CAAC;KACb;IAED,IAAI,CAAC,GAAG,CAAC,WAAW,CAAC,CAAC;IACtB,MAAM,WAAW,GAAG,UAAU,CAAC,IAAI,CAAC,WAAW,CAAC;IAChD,IAAI;QACF,MAAM,WAAW,GAAG,OAAO,CAAC,GAAG,WAAW,eAAe,CAAC,CAAC;QAC3D,IAAI,CAAC,WAAW,CAAC,gBAAgB,EAAE;YACjC,OAAO,IAAI,CAAC;SACb;QAED,MAAM,CAAC,IAAI,CAAC,WAAW,CAAC,gBAAgB,CAAC;aACtC,GAAG,CAAC,CAAC,cAAc,EAAE,EAAE,CAAC,OAAO,cAAc,EAAE,CAAC;aAChD,GAAG,CAAC,CAAC,UAAU,EAAE,EAAE,CAAC,KAAK,CAAC,aAAa,CAAC,UAAU,CAAC,CAAC;aACpD,MAAM,CAAC,OAAO,CAAC;aACf,OAAO,CAAC,CAAC,IAAI,EAAE,EAAE;YAChB,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,WAAW,CAAC,GAAG,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC;YAChD,kCAAkC,CAAC,IAAI,CAAC,IAAI,EAAE,KAAK,EAAE,IAAI,EAAE,IAAI,CAAC,CAAC;QACnE,CAAC,CAAC,CAAC;QACL,OAAO,IAAI,CAAC;KACb;IAAC,OAAO,CAAC,EAAE;QACV,OAAO,IAAI,CAAC;KACb;AACH,CAAC"}
@@ -1,13 +0,0 @@
1
- import { Tree } from '@nrwl/devkit';
2
- /**
3
- * Calls a function for each different options that an executor is configured with
4
- */
5
- export declare function forEachExecutorOptions<Options>(tree: Tree,
6
- /**
7
- * Name of the executor to update options for
8
- */
9
- executorName: string,
10
- /**
11
- * Callback that is called for each options configured for a builder
12
- */
13
- callback: (currentValue: Options, project: string, target: string, configuration?: string) => void): void;
@@ -1,36 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.forEachExecutorOptions = void 0;
4
- const devkit_1 = require("@nrwl/devkit");
5
- /**
6
- * Calls a function for each different options that an executor is configured with
7
- */
8
- function forEachExecutorOptions(tree,
9
- /**
10
- * Name of the executor to update options for
11
- */
12
- executorName,
13
- /**
14
- * Callback that is called for each options configured for a builder
15
- */
16
- callback) {
17
- for (const [projectName, project] of (0, devkit_1.getProjects)(tree)) {
18
- for (const [targetName, target] of Object.entries(project.targets || {})) {
19
- if (executorName !== target.executor) {
20
- continue;
21
- }
22
- if (target.options) {
23
- callback(target.options, projectName, targetName);
24
- }
25
- if (!target.configurations) {
26
- continue;
27
- }
28
- Object.entries(target.configurations).forEach(([configName, options]) => {
29
- callback(options, projectName, targetName, configName);
30
- });
31
- }
32
- }
33
- }
34
- exports.forEachExecutorOptions = forEachExecutorOptions;
35
- // TODO: add a method for updating options
36
- //# sourceMappingURL=executor-options-utils.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"executor-options-utils.js","sourceRoot":"","sources":["../../../../../packages/workspace/src/utilities/executor-options-utils.ts"],"names":[],"mappings":";;;AAAA,yCAAiD;AAEjD;;GAEG;AACH,SAAgB,sBAAsB,CACpC,IAAU;AACV;;GAEG;AACH,YAAoB;AACpB;;GAEG;AACH,QAKS;IAET,KAAK,MAAM,CAAC,WAAW,EAAE,OAAO,CAAC,IAAI,IAAA,oBAAW,EAAC,IAAI,CAAC,EAAE;QACtD,KAAK,MAAM,CAAC,UAAU,EAAE,MAAM,CAAC,IAAI,MAAM,CAAC,OAAO,CAAC,OAAO,CAAC,OAAO,IAAI,EAAE,CAAC,EAAE;YACxE,IAAI,YAAY,KAAK,MAAM,CAAC,QAAQ,EAAE;gBACpC,SAAS;aACV;YAED,IAAI,MAAM,CAAC,OAAO,EAAE;gBAClB,QAAQ,CAAC,MAAM,CAAC,OAAO,EAAE,WAAW,EAAE,UAAU,CAAC,CAAC;aACnD;YAED,IAAI,CAAC,MAAM,CAAC,cAAc,EAAE;gBAC1B,SAAS;aACV;YACD,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,cAAc,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,UAAU,EAAE,OAAO,CAAC,EAAE,EAAE;gBACtE,QAAQ,CAAC,OAAO,EAAE,WAAW,EAAE,UAAU,EAAE,UAAU,CAAC,CAAC;YACzD,CAAC,CAAC,CAAC;SACJ;KACF;AACH,CAAC;AAlCD,wDAkCC;AAED,0CAA0C"}
@@ -1,6 +0,0 @@
1
- /**
2
- * Generates a set of glob patterns based off the source root of the app and its dependencies
3
- * @param dirPath workspace relative directory path that will be used to infer the parent project and dependencies
4
- * @param fileGlobPattern pass a custom glob pattern to be used
5
- */
6
- export declare function createGlobPatternsForDependencies(dirPath: string, fileGlobPattern: string): string[];