@nrwl/workspace 13.4.0-beta.1 → 13.4.1-beta.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (128) hide show
  1. package/README.md +3 -3
  2. package/index.d.ts +1 -2
  3. package/index.js +2 -6
  4. package/index.js.map +1 -1
  5. package/package.json +6 -10
  6. package/presets/core.json +21 -0
  7. package/presets/npm.json +0 -1
  8. package/src/command-line/dep-graph.js +2 -2
  9. package/src/command-line/dep-graph.js.map +1 -1
  10. package/src/command-line/format.js +18 -20
  11. package/src/command-line/format.js.map +1 -1
  12. package/src/command-line/nx-commands.js +1 -1
  13. package/src/command-line/nx-commands.js.map +1 -1
  14. package/src/command-line/utils.js +1 -1
  15. package/src/command-line/utils.js.map +1 -1
  16. package/src/core/dep-graph/3rdpartylicenses.txt +196 -216
  17. package/src/core/dep-graph/index.html +15 -187
  18. package/src/core/dep-graph/main.esm.js +1 -1
  19. package/src/core/dep-graph/main.esm.js.LICENSE.txt +51 -0
  20. package/src/core/dep-graph/styles.css +1 -1
  21. package/src/core/file-utils.js +3 -3
  22. package/src/core/file-utils.js.map +1 -1
  23. package/src/core/nx-deps/nx-deps-cache.js +13 -4
  24. package/src/core/nx-deps/nx-deps-cache.js.map +1 -1
  25. package/src/core/project-graph/build-dependencies/build-explicit-typescript-and-package-json-dependencies.d.ts +4 -1
  26. package/src/core/project-graph/build-dependencies/build-explicit-typescript-and-package-json-dependencies.js +11 -4
  27. package/src/core/project-graph/build-dependencies/build-explicit-typescript-and-package-json-dependencies.js.map +1 -1
  28. package/src/core/project-graph/build-dependencies/explicit-package-json-dependencies.js +2 -1
  29. package/src/core/project-graph/build-dependencies/explicit-package-json-dependencies.js.map +1 -1
  30. package/src/core/project-graph/build-dependencies/implicit-project-dependencies.js +6 -1
  31. package/src/core/project-graph/build-dependencies/implicit-project-dependencies.js.map +1 -1
  32. package/src/core/project-graph/build-nodes/workspace-projects.js +6 -2
  33. package/src/core/project-graph/build-nodes/workspace-projects.js.map +1 -1
  34. package/src/core/project-graph/build-project-graph.js +26 -19
  35. package/src/core/project-graph/build-project-graph.js.map +1 -1
  36. package/src/core/project-graph/daemon/server/server.js +1 -1
  37. package/src/core/project-graph/daemon/server/server.js.map +1 -1
  38. package/src/core/project-graph/daemon/server/watcher.d.ts +3 -1
  39. package/src/core/project-graph/daemon/server/watcher.js +24 -25
  40. package/src/core/project-graph/daemon/server/watcher.js.map +1 -1
  41. package/src/core/project-graph/project-graph-worker.js +3 -1
  42. package/src/core/project-graph/project-graph-worker.js.map +1 -1
  43. package/src/core/project-graph/project-graph.js +1 -1
  44. package/src/generators/init/init.js +4 -5
  45. package/src/generators/init/init.js.map +1 -1
  46. package/src/generators/new/new.d.ts +1 -1
  47. package/src/generators/new/new.js +25 -10
  48. package/src/generators/new/new.js.map +1 -1
  49. package/src/generators/preset/preset.js +7 -6
  50. package/src/generators/preset/preset.js.map +1 -1
  51. package/src/generators/utils/presets.d.ts +5 -2
  52. package/src/generators/utils/presets.js +4 -1
  53. package/src/generators/utils/presets.js.map +1 -1
  54. package/src/generators/workspace/files/README.md__tmpl__ +2 -2
  55. package/src/generators/workspace/workspace.js +10 -4
  56. package/src/generators/workspace/workspace.js.map +1 -1
  57. package/src/migrations/update-10-3-0/add-vscode-extensions.js +4 -6
  58. package/src/migrations/update-10-3-0/add-vscode-extensions.js.map +1 -1
  59. package/src/migrations/update-13-2-0/set-parallel-default.js +12 -8
  60. package/src/migrations/update-13-2-0/set-parallel-default.js.map +1 -1
  61. package/src/tasks-runner/forked-process-task-runner.js +1 -0
  62. package/src/tasks-runner/forked-process-task-runner.js.map +1 -1
  63. package/src/tasks-runner/life-cycle.d.ts +15 -11
  64. package/src/tasks-runner/life-cycle.js +4 -4
  65. package/src/tasks-runner/life-cycle.js.map +1 -1
  66. package/src/tasks-runner/{run-command/index.d.ts → run-command.d.ts} +7 -4
  67. package/src/tasks-runner/{run-command/index.js → run-command.js} +19 -35
  68. package/src/tasks-runner/run-command.js.map +1 -0
  69. package/src/tasks-runner/task-orchestrator.d.ts +3 -0
  70. package/src/tasks-runner/task-orchestrator.js +29 -13
  71. package/src/tasks-runner/task-orchestrator.js.map +1 -1
  72. package/src/tasks-runner/task-timings-life-cycle.d.ts +10 -3
  73. package/src/tasks-runner/task-timings-life-cycle.js +56 -3
  74. package/src/tasks-runner/task-timings-life-cycle.js.map +1 -1
  75. package/src/tasks-runner/tasks-runner.d.ts +1 -1
  76. package/src/tasks-runner/tasks-runner.js.map +1 -1
  77. package/src/tasks-runner/utils.js +4 -1
  78. package/src/tasks-runner/utils.js.map +1 -1
  79. package/src/utilities/buildable-libs-utils.d.ts +1 -0
  80. package/src/utilities/buildable-libs-utils.js +26 -21
  81. package/src/utilities/buildable-libs-utils.js.map +1 -1
  82. package/src/utilities/cache-directory.d.ts +1 -1
  83. package/src/utilities/cache-directory.js +3 -3
  84. package/src/utilities/cache-directory.js.map +1 -1
  85. package/src/utilities/create-package-json.js +3 -3
  86. package/src/utilities/create-package-json.js.map +1 -1
  87. package/src/utilities/fileutils.d.ts +0 -2
  88. package/src/utilities/fileutils.js +1 -4
  89. package/src/utilities/fileutils.js.map +1 -1
  90. package/src/utilities/plugins/installed-plugins.js +2 -2
  91. package/src/utilities/plugins/installed-plugins.js.map +1 -1
  92. package/src/utilities/project-graph-utils.d.ts +2 -2
  93. package/src/utilities/project-graph-utils.js.map +1 -1
  94. package/src/utilities/typescript/compilation.d.ts +1 -1
  95. package/src/utilities/typescript/compilation.js +11 -12
  96. package/src/utilities/typescript/compilation.js.map +1 -1
  97. package/src/utils/fileutils.d.ts +0 -2
  98. package/src/utils/fileutils.js +1 -4
  99. package/src/utils/fileutils.js.map +1 -1
  100. package/src/utils/runtime-lint-utils.js +1 -1
  101. package/src/utils/runtime-lint-utils.js.map +1 -1
  102. package/src/utils/versions.d.ts +1 -1
  103. package/src/utils/versions.js +2 -2
  104. package/src/devkit-reexport.d.ts +0 -4
  105. package/src/devkit-reexport.js +0 -20
  106. package/src/devkit-reexport.js.map +0 -1
  107. package/src/tasks-runner/run-command/components/no-targets-run.d.ts +0 -7
  108. package/src/tasks-runner/run-command/components/no-targets-run.js +0 -20
  109. package/src/tasks-runner/run-command/components/no-targets-run.js.map +0 -1
  110. package/src/tasks-runner/run-command/components/nx-output-row-title.d.ts +0 -7
  111. package/src/tasks-runner/run-command/components/nx-output-row-title.js +0 -17
  112. package/src/tasks-runner/run-command/components/nx-output-row-title.js.map +0 -1
  113. package/src/tasks-runner/run-command/components/run-command.d.ts +0 -16
  114. package/src/tasks-runner/run-command/components/run-command.js +0 -55
  115. package/src/tasks-runner/run-command/components/run-command.js.map +0 -1
  116. package/src/tasks-runner/run-command/components/run-many.d.ts +0 -15
  117. package/src/tasks-runner/run-command/components/run-many.js +0 -123
  118. package/src/tasks-runner/run-command/components/run-many.js.map +0 -1
  119. package/src/tasks-runner/run-command/components/task-list.d.ts +0 -7
  120. package/src/tasks-runner/run-command/components/task-list.js +0 -29
  121. package/src/tasks-runner/run-command/components/task-list.js.map +0 -1
  122. package/src/tasks-runner/run-command/components/task-row.d.ts +0 -12
  123. package/src/tasks-runner/run-command/components/task-row.js +0 -52
  124. package/src/tasks-runner/run-command/components/task-row.js.map +0 -1
  125. package/src/tasks-runner/run-command/index.js.map +0 -1
  126. package/src/tasks-runner/run-command/ink-run-many-life-cycle.d.ts +0 -30
  127. package/src/tasks-runner/run-command/ink-run-many-life-cycle.js +0 -34
  128. package/src/tasks-runner/run-command/ink-run-many-life-cycle.js.map +0 -1
@@ -74,6 +74,31 @@ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
74
74
  CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
75
75
 
76
76
 
77
+ @tippyjs/react
78
+ MIT
79
+ MIT License
80
+
81
+ Copyright (c) 2018 atomiks
82
+
83
+ Permission is hereby granted, free of charge, to any person obtaining a copy
84
+ of this software and associated documentation files (the "Software"), to deal
85
+ in the Software without restriction, including without limitation the rights
86
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
87
+ copies of the Software, and to permit persons to whom the Software is
88
+ furnished to do so, subject to the following conditions:
89
+
90
+ The above copyright notice and this permission notice shall be included in all
91
+ copies or substantial portions of the Software.
92
+
93
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
94
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
95
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
96
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
97
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
98
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
99
+ SOFTWARE.
100
+
101
+
77
102
  @xstate/immer
78
103
  MIT
79
104
  The MIT License (MIT)
@@ -103,6 +128,32 @@ SOFTWARE.
103
128
  @xstate/inspect
104
129
  MIT
105
130
 
131
+ @xstate/react
132
+ MIT
133
+ The MIT License (MIT)
134
+
135
+ Copyright (c) 2015 David Khourshid
136
+
137
+ Permission is hereby granted, free of charge, to any person obtaining a copy
138
+ of this software and associated documentation files (the "Software"), to deal
139
+ in the Software without restriction, including without limitation the rights
140
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
141
+ copies of the Software, and to permit persons to whom the Software is
142
+ furnished to do so, subject to the following conditions:
143
+
144
+ The above copyright notice and this permission notice shall be included in all
145
+ copies or substantial portions of the Software.
146
+
147
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
148
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
149
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
150
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
151
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
152
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
153
+ SOFTWARE.
154
+
155
+
156
+
106
157
  core-js
107
158
  MIT
108
159
  Copyright (c) 2014-2021 Denis Pushkarev
@@ -399,210 +450,104 @@ licenses; we recommend you read them, as their terms may differ from the
399
450
  terms above.
400
451
 
401
452
 
402
- rxjs
403
- Apache-2.0
404
- Apache License
405
- Version 2.0, January 2004
406
- http://www.apache.org/licenses/
407
-
408
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
409
-
410
- 1. Definitions.
411
-
412
- "License" shall mean the terms and conditions for use, reproduction,
413
- and distribution as defined by Sections 1 through 9 of this document.
414
-
415
- "Licensor" shall mean the copyright owner or entity authorized by
416
- the copyright owner that is granting the License.
417
-
418
- "Legal Entity" shall mean the union of the acting entity and all
419
- other entities that control, are controlled by, or are under common
420
- control with that entity. For the purposes of this definition,
421
- "control" means (i) the power, direct or indirect, to cause the
422
- direction or management of such entity, whether by contract or
423
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
424
- outstanding shares, or (iii) beneficial ownership of such entity.
425
-
426
- "You" (or "Your") shall mean an individual or Legal Entity
427
- exercising permissions granted by this License.
428
-
429
- "Source" form shall mean the preferred form for making modifications,
430
- including but not limited to software source code, documentation
431
- source, and configuration files.
432
-
433
- "Object" form shall mean any form resulting from mechanical
434
- transformation or translation of a Source form, including but
435
- not limited to compiled object code, generated documentation,
436
- and conversions to other media types.
437
-
438
- "Work" shall mean the work of authorship, whether in Source or
439
- Object form, made available under the License, as indicated by a
440
- copyright notice that is included in or attached to the work
441
- (an example is provided in the Appendix below).
442
-
443
- "Derivative Works" shall mean any work, whether in Source or Object
444
- form, that is based on (or derived from) the Work and for which the
445
- editorial revisions, annotations, elaborations, or other modifications
446
- represent, as a whole, an original work of authorship. For the purposes
447
- of this License, Derivative Works shall not include works that remain
448
- separable from, or merely link (or bind by name) to the interfaces of,
449
- the Work and Derivative Works thereof.
450
-
451
- "Contribution" shall mean any work of authorship, including
452
- the original version of the Work and any modifications or additions
453
- to that Work or Derivative Works thereof, that is intentionally
454
- submitted to Licensor for inclusion in the Work by the copyright owner
455
- or by an individual or Legal Entity authorized to submit on behalf of
456
- the copyright owner. For the purposes of this definition, "submitted"
457
- means any form of electronic, verbal, or written communication sent
458
- to the Licensor or its representatives, including but not limited to
459
- communication on electronic mailing lists, source code control systems,
460
- and issue tracking systems that are managed by, or on behalf of, the
461
- Licensor for the purpose of discussing and improving the Work, but
462
- excluding communication that is conspicuously marked or otherwise
463
- designated in writing by the copyright owner as "Not a Contribution."
464
-
465
- "Contributor" shall mean Licensor and any individual or Legal Entity
466
- on behalf of whom a Contribution has been received by Licensor and
467
- subsequently incorporated within the Work.
468
-
469
- 2. Grant of Copyright License. Subject to the terms and conditions of
470
- this License, each Contributor hereby grants to You a perpetual,
471
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
472
- copyright license to reproduce, prepare Derivative Works of,
473
- publicly display, publicly perform, sublicense, and distribute the
474
- Work and such Derivative Works in Source or Object form.
475
-
476
- 3. Grant of Patent License. Subject to the terms and conditions of
477
- this License, each Contributor hereby grants to You a perpetual,
478
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
479
- (except as stated in this section) patent license to make, have made,
480
- use, offer to sell, sell, import, and otherwise transfer the Work,
481
- where such license applies only to those patent claims licensable
482
- by such Contributor that are necessarily infringed by their
483
- Contribution(s) alone or by combination of their Contribution(s)
484
- with the Work to which such Contribution(s) was submitted. If You
485
- institute patent litigation against any entity (including a
486
- cross-claim or counterclaim in a lawsuit) alleging that the Work
487
- or a Contribution incorporated within the Work constitutes direct
488
- or contributory patent infringement, then any patent licenses
489
- granted to You under this License for that Work shall terminate
490
- as of the date such litigation is filed.
491
-
492
- 4. Redistribution. You may reproduce and distribute copies of the
493
- Work or Derivative Works thereof in any medium, with or without
494
- modifications, and in Source or Object form, provided that You
495
- meet the following conditions:
496
-
497
- (a) You must give any other recipients of the Work or
498
- Derivative Works a copy of this License; and
499
-
500
- (b) You must cause any modified files to carry prominent notices
501
- stating that You changed the files; and
502
-
503
- (c) You must retain, in the Source form of any Derivative Works
504
- that You distribute, all copyright, patent, trademark, and
505
- attribution notices from the Source form of the Work,
506
- excluding those notices that do not pertain to any part of
507
- the Derivative Works; and
508
-
509
- (d) If the Work includes a "NOTICE" text file as part of its
510
- distribution, then any Derivative Works that You distribute must
511
- include a readable copy of the attribution notices contained
512
- within such NOTICE file, excluding those notices that do not
513
- pertain to any part of the Derivative Works, in at least one
514
- of the following places: within a NOTICE text file distributed
515
- as part of the Derivative Works; within the Source form or
516
- documentation, if provided along with the Derivative Works; or,
517
- within a display generated by the Derivative Works, if and
518
- wherever such third-party notices normally appear. The contents
519
- of the NOTICE file are for informational purposes only and
520
- do not modify the License. You may add Your own attribution
521
- notices within Derivative Works that You distribute, alongside
522
- or as an addendum to the NOTICE text from the Work, provided
523
- that such additional attribution notices cannot be construed
524
- as modifying the License.
525
-
526
- You may add Your own copyright statement to Your modifications and
527
- may provide additional or different license terms and conditions
528
- for use, reproduction, or distribution of Your modifications, or
529
- for any such Derivative Works as a whole, provided Your use,
530
- reproduction, and distribution of the Work otherwise complies with
531
- the conditions stated in this License.
532
-
533
- 5. Submission of Contributions. Unless You explicitly state otherwise,
534
- any Contribution intentionally submitted for inclusion in the Work
535
- by You to the Licensor shall be under the terms and conditions of
536
- this License, without any additional terms or conditions.
537
- Notwithstanding the above, nothing herein shall supersede or modify
538
- the terms of any separate license agreement you may have executed
539
- with Licensor regarding such Contributions.
540
-
541
- 6. Trademarks. This License does not grant permission to use the trade
542
- names, trademarks, service marks, or product names of the Licensor,
543
- except as required for reasonable and customary use in describing the
544
- origin of the Work and reproducing the content of the NOTICE file.
545
-
546
- 7. Disclaimer of Warranty. Unless required by applicable law or
547
- agreed to in writing, Licensor provides the Work (and each
548
- Contributor provides its Contributions) on an "AS IS" BASIS,
549
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
550
- implied, including, without limitation, any warranties or conditions
551
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
552
- PARTICULAR PURPOSE. You are solely responsible for determining the
553
- appropriateness of using or redistributing the Work and assume any
554
- risks associated with Your exercise of permissions under this License.
555
-
556
- 8. Limitation of Liability. In no event and under no legal theory,
557
- whether in tort (including negligence), contract, or otherwise,
558
- unless required by applicable law (such as deliberate and grossly
559
- negligent acts) or agreed to in writing, shall any Contributor be
560
- liable to You for damages, including any direct, indirect, special,
561
- incidental, or consequential damages of any character arising as a
562
- result of this License or out of the use or inability to use the
563
- Work (including but not limited to damages for loss of goodwill,
564
- work stoppage, computer failure or malfunction, or any and all
565
- other commercial damages or losses), even if such Contributor
566
- has been advised of the possibility of such damages.
567
-
568
- 9. Accepting Warranty or Additional Liability. While redistributing
569
- the Work or Derivative Works thereof, You may choose to offer,
570
- and charge a fee for, acceptance of support, warranty, indemnity,
571
- or other liability obligations and/or rights consistent with this
572
- License. However, in accepting such obligations, You may act only
573
- on Your own behalf and on Your sole responsibility, not on behalf
574
- of any other Contributor, and only if You agree to indemnify,
575
- defend, and hold each Contributor harmless for any liability
576
- incurred by, or claims asserted against, such Contributor by reason
577
- of your accepting any such warranty or additional liability.
578
-
579
- END OF TERMS AND CONDITIONS
580
-
581
- APPENDIX: How to apply the Apache License to your work.
582
-
583
- To apply the Apache License to your work, attach the following
584
- boilerplate notice, with the fields enclosed by brackets "[]"
585
- replaced with your own identifying information. (Don't include
586
- the brackets!) The text should be enclosed in the appropriate
587
- comment syntax for the file format. We also recommend that a
588
- file or class name and description of purpose be included on the
589
- same "printed page" as the copyright notice for easier
590
- identification within third-party archives.
591
-
592
- Copyright (c) 2015-2018 Google, Inc., Netflix, Inc., Microsoft Corp. and contributors
593
-
594
- Licensed under the Apache License, Version 2.0 (the "License");
595
- you may not use this file except in compliance with the License.
596
- You may obtain a copy of the License at
597
-
598
- http://www.apache.org/licenses/LICENSE-2.0
599
-
600
- Unless required by applicable law or agreed to in writing, software
601
- distributed under the License is distributed on an "AS IS" BASIS,
602
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
603
- See the License for the specific language governing permissions and
604
- limitations under the License.
605
-
453
+ object-assign
454
+ MIT
455
+ The MIT License (MIT)
456
+
457
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
458
+
459
+ Permission is hereby granted, free of charge, to any person obtaining a copy
460
+ of this software and associated documentation files (the "Software"), to deal
461
+ in the Software without restriction, including without limitation the rights
462
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
463
+ copies of the Software, and to permit persons to whom the Software is
464
+ furnished to do so, subject to the following conditions:
465
+
466
+ The above copyright notice and this permission notice shall be included in
467
+ all copies or substantial portions of the Software.
468
+
469
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
470
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
471
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
472
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
473
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
474
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
475
+ THE SOFTWARE.
476
+
477
+
478
+ react
479
+ MIT
480
+ MIT License
481
+
482
+ Copyright (c) Facebook, Inc. and its affiliates.
483
+
484
+ Permission is hereby granted, free of charge, to any person obtaining a copy
485
+ of this software and associated documentation files (the "Software"), to deal
486
+ in the Software without restriction, including without limitation the rights
487
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
488
+ copies of the Software, and to permit persons to whom the Software is
489
+ furnished to do so, subject to the following conditions:
490
+
491
+ The above copyright notice and this permission notice shall be included in all
492
+ copies or substantial portions of the Software.
493
+
494
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
495
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
496
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
497
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
498
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
499
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
500
+ SOFTWARE.
501
+
502
+
503
+ react-dom
504
+ MIT
505
+ MIT License
506
+
507
+ Copyright (c) Facebook, Inc. and its affiliates.
508
+
509
+ Permission is hereby granted, free of charge, to any person obtaining a copy
510
+ of this software and associated documentation files (the "Software"), to deal
511
+ in the Software without restriction, including without limitation the rights
512
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
513
+ copies of the Software, and to permit persons to whom the Software is
514
+ furnished to do so, subject to the following conditions:
515
+
516
+ The above copyright notice and this permission notice shall be included in all
517
+ copies or substantial portions of the Software.
518
+
519
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
520
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
521
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
522
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
523
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
524
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
525
+ SOFTWARE.
526
+
527
+
528
+ scheduler
529
+ MIT
530
+ MIT License
531
+
532
+ Copyright (c) Facebook, Inc. and its affiliates.
533
+
534
+ Permission is hereby granted, free of charge, to any person obtaining a copy
535
+ of this software and associated documentation files (the "Software"), to deal
536
+ in the Software without restriction, including without limitation the rights
537
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
538
+ copies of the Software, and to permit persons to whom the Software is
539
+ furnished to do so, subject to the following conditions:
540
+
541
+ The above copyright notice and this permission notice shall be included in all
542
+ copies or substantial portions of the Software.
543
+
544
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
545
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
546
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
547
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
548
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
549
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
550
+ SOFTWARE.
606
551
 
607
552
 
608
553
  tippy.js
@@ -630,20 +575,55 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
630
575
  SOFTWARE.
631
576
 
632
577
 
633
- tslib
634
- 0BSD
635
- Copyright (c) Microsoft Corporation.
578
+ use-isomorphic-layout-effect
579
+ MIT
580
+ MIT License
581
+
582
+ Copyright (c) Mateusz Burzyński
583
+
584
+ Permission is hereby granted, free of charge, to any person obtaining a copy
585
+ of this software and associated documentation files (the "Software"), to deal
586
+ in the Software without restriction, including without limitation the rights
587
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
588
+ copies of the Software, and to permit persons to whom the Software is
589
+ furnished to do so, subject to the following conditions:
590
+
591
+ The above copyright notice and this permission notice shall be included in all
592
+ copies or substantial portions of the Software.
593
+
594
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
595
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
596
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
597
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
598
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
599
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
600
+ SOFTWARE.
636
601
 
637
- Permission to use, copy, modify, and/or distribute this software for any
638
- purpose with or without fee is hereby granted.
639
602
 
640
- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
641
- REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
642
- AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
643
- INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
644
- LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
645
- OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
646
- PERFORMANCE OF THIS SOFTWARE.
603
+ use-subscription
604
+ MIT
605
+ MIT License
606
+
607
+ Copyright (c) Facebook, Inc. and its affiliates.
608
+
609
+ Permission is hereby granted, free of charge, to any person obtaining a copy
610
+ of this software and associated documentation files (the "Software"), to deal
611
+ in the Software without restriction, including without limitation the rights
612
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
613
+ copies of the Software, and to permit persons to whom the Software is
614
+ furnished to do so, subject to the following conditions:
615
+
616
+ The above copyright notice and this permission notice shall be included in all
617
+ copies or substantial portions of the Software.
618
+
619
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
620
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
621
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
622
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
623
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
624
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
625
+ SOFTWARE.
626
+
647
627
 
648
628
  webpack
649
629
  MIT
@@ -1,188 +1,16 @@
1
1
  <!DOCTYPE html>
2
- <head>
3
- <meta charset="utf-8" />
4
-
5
- <title>Nx Workspace Dependency Graph</title>
6
- <base href="/" />
7
- <meta name="viewport" content="width=device-width, initial-scale=1" />
8
-
9
- <link
10
- href="https://fonts.googleapis.com/css?family=Montserrat&display=swap"
11
- rel="stylesheet"
12
- />
13
-
14
- <script id="environment" src="environment.js"></script>
15
- <link rel="stylesheet" href="styles.css"></head>
16
- <body>
17
- <svg xmlns="http://www.w3.org/2000/svg" style="display: none">
18
- <symbol id="crosshair" viewBox="0 0 24 24">
19
- <g
20
- fill="none"
21
- stroke="#ffffff"
22
- stroke-width="2"
23
- stroke-linecap="round"
24
- stroke-linejoin="round"
25
- >
26
- <circle cx="12" cy="12" r="10" />
27
- <line x1="22" y1="12" x2="18" y2="12" />
28
- <line x1="6" y1="12" x2="2" y2="12" />
29
- <line x1="12" y1="6" x2="12" y2="2" />
30
- <line x1="12" y1="22" x2="12" y2="18" />
31
- </g>
32
- </symbol>
33
- </svg>
34
-
35
- <div id="app">
36
- <div
37
- class="
38
- flex flex-col
39
- h-full
40
- overflow-scroll
41
- w-72
42
- pb-10
43
- shadow-lg
44
- ring-1 ring-gray-400 ring-opacity-10
45
- relative
46
- "
47
- id="sidebar"
48
- >
49
- <div class="bg-blue-nx-base">
50
- <div class="flex items-center justify-start mx-4 my-5 text-white">
51
- <svg
52
- class="h-10 w-auto"
53
- viewBox="0 0 24 24"
54
- fill="currentColor"
55
- xmlns="http://www.w3.org/2000/svg"
56
- >
57
- <title>Nx</title>
58
- <path
59
- d="M11.987 14.138l-3.132 4.923-5.193-8.427-.012 8.822H0V4.544h3.691l5.247 8.833.005-3.998 3.044 4.759zm.601-5.761c.024-.048 0-3.784.008-3.833h-3.65c.002.059-.005 3.776-.003 3.833h3.645zm5.634 4.134a2.061 2.061 0 0 0-1.969 1.336 1.963 1.963 0 0 1 2.343-.739c.396.161.917.422 1.33.283a2.1 2.1 0 0 0-1.704-.88zm3.39 1.061c-.375-.13-.8-.277-1.109-.681-.06-.08-.116-.17-.176-.265a2.143 2.143 0 0 0-.533-.642c-.294-.216-.68-.322-1.18-.322a2.482 2.482 0 0 0-2.294 1.536 2.325 2.325 0 0 1 4.002.388.75.75 0 0 0 .836.334c.493-.105.46.36 1.203.518v-.133c-.003-.446-.246-.55-.75-.733zm2.024 1.266a.723.723 0 0 0 .347-.638c-.01-2.957-2.41-5.487-5.37-5.487a5.364 5.364 0 0 0-4.487 2.418c-.01-.026-1.522-2.39-1.538-2.418H8.943l3.463 5.423-3.379 5.32h3.54l1.54-2.366 1.568 2.366h3.541l-3.21-5.052a.7.7 0 0 1-.084-.32 2.69 2.69 0 0 1 2.69-2.691h.001c1.488 0 1.736.89 2.057 1.308.634.826 1.9.464 1.9 1.541a.707.707 0 0 0 1.066.596zm.35.133c-.173.372-.56.338-.755.639-.176.271.114.412.114.412s.337.156.538-.311c.104-.231.14-.488.103-.74z"
60
- />
61
- </svg>
62
- <span class="ml-4 text-xl font-medium"> Dependency Graph </span>
63
- </div>
64
- </div>
65
-
66
- <a
67
- id="help"
68
- class="
69
- mt-3
70
- px-4
71
- text-xs text-gray-500
72
- flex
73
- items-center
74
- cursor-pointer
75
- hover:underline
76
- "
77
- href="https://nx.dev/structure/dependency-graph"
78
- rel="nofollow"
79
- target="_blank"
80
- >
81
- <svg
82
- xmlns="http://www.w3.org/2000/svg"
83
- class="h-4 w-4 mr-2"
84
- fill="none"
85
- viewBox="0 0 24 24"
86
- stroke="currentColor"
87
- >
88
- <path
89
- stroke-linecap="round"
90
- stroke-linejoin="round"
91
- stroke-width="2"
92
- d="M13 16h-1v-4h-1m1-4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z"
93
- />
94
- </svg>
95
- Analyse and visualize your workspace.
96
- </a>
97
- <!-- /#help.mt-8 px-4 -->
98
-
99
- <div class="sidebar-section" id="focused-project"></div>
100
- <!-- /#focuded-project -->
101
-
102
- <div class="sidebar-section" id="text-filter-panel"></div>
103
- <!-- /#text-filter-panel -->
104
-
105
- <div class="sidebar-section" id="display-options-panel"></div>
106
- <!-- /#display-options-panel -->
107
-
108
- <div id="project-lists" class="mt-8 px-4 border-t border-gray-200"></div>
109
- <!-- /#project-lists -->
110
- </div>
111
-
112
- <div id="main-content" class="flex-grow overflow-hidden">
113
- <div
114
- id="debugger-panel"
115
- class="
116
- w-auto
117
- text-gray-700
118
- bg-gray-50
119
- border-b border-gray-200
120
- p-4
121
- flex flex-column
122
- items-center
123
- justify-items-center
124
- gap-4
125
- "
126
- hidden
127
- ></div>
128
- <div id="no-projects-chosen" class="flex text-gray-700">
129
- <svg
130
- xmlns="http://www.w3.org/2000/svg"
131
- class="h-6 w-6 mr-4"
132
- fill="none"
133
- viewBox="0 0 24 24"
134
- stroke="currentColor"
135
- >
136
- <path
137
- stroke-linecap="round"
138
- stroke-linejoin="round"
139
- stroke-width="2"
140
- d="M11 15l-3-3m0 0l3-3m-3 3h8M3 12a9 9 0 1118 0 9 9 0 01-18 0z"
141
- />
142
- </svg>
143
- <h4>Please select projects in the sidebar.</h4>
144
- </div>
145
- <div id="graph-container">
146
- <div id="cytoscape-graph"></div>
147
- <button
148
- type="button"
149
- class="
150
- fixed
151
- z-50
152
- bottom-4
153
- right-4
154
- w-16
155
- h-16
156
- rounded-full
157
- bg-green-nx-base
158
- shadow-sm
159
- text-white
160
- block
161
- transition
162
- duration-300
163
- transform
164
- opacity-0
165
- "
166
- data-cy="downloadImageButton"
167
- >
168
- <svg
169
- height="24"
170
- width="24"
171
- class="absolute top-1/2 left-1/2 -mt-3 -ml-3"
172
- fill="none"
173
- stroke="currentColor"
174
- viewBox="0 0 24 24"
175
- xmlns="http://www.w3.org/2000/svg"
176
- >
177
- <path
178
- stroke-linecap="round"
179
- stroke-linejoin="round"
180
- stroke-width="2"
181
- d="M4 16v1a3 3 0 003 3h10a3 3 0 003-3v-1m-4-4l-4 4m0 0l-4-4m4 4V4"
182
- ></path>
183
- </svg>
184
- </button>
185
- </div>
186
- </div>
187
- </div>
188
- <script src="runtime.esm.js" type="module"></script><script src="polyfills.esm.js" type="module"></script><script src="main.esm.js" type="module"></script></body>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="utf-8" />
5
+ <title>Nx Workspace Dependency Graph</title>
6
+ <base href="/" />
7
+
8
+ <meta name="viewport" content="width=device-width, initial-scale=1" />
9
+ <link rel="icon" type="image/x-icon" href="favicon.ico" />
10
+
11
+ <script id="environment" src="environment.js"></script>
12
+ <link rel="stylesheet" href="styles.css"></head>
13
+ <body>
14
+ <div id="app"></div>
15
+ <script src="runtime.esm.js" type="module"></script><script src="polyfills.esm.js" type="module"></script><script src="main.esm.js" type="module"></script></body>
16
+ </html>