@nrwl/workspace 13.7.0 → 13.8.0-beta.1

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.
Files changed (32) hide show
  1. package/package.json +5 -5
  2. package/src/core/dep-graph/3rdpartylicenses.txt +0 -24
  3. package/src/core/dep-graph/main.esm.js +1 -1
  4. package/src/core/file-utils.d.ts +2 -2
  5. package/src/core/file-utils.js +6 -6
  6. package/src/core/file-utils.js.map +1 -1
  7. package/src/core/hasher/file-hasher.js +2 -11
  8. package/src/core/hasher/file-hasher.js.map +1 -1
  9. package/src/core/hasher/git-based-file-hasher.js +7 -6
  10. package/src/core/hasher/git-based-file-hasher.js.map +1 -1
  11. package/src/core/hasher/node-based-file-hasher.js +19 -9
  12. package/src/core/hasher/node-based-file-hasher.js.map +1 -1
  13. package/src/core/project-graph/daemon/client/client.js +34 -39
  14. package/src/core/project-graph/daemon/client/client.js.map +1 -1
  15. package/src/core/project-graph/project-graph.js +14 -3
  16. package/src/core/project-graph/project-graph.js.map +1 -1
  17. package/src/generators/workspace/files/README.md__tmpl__ +1 -1
  18. package/src/migrations/update-13-6-0/remove-old-task-runner-options.js +3 -2
  19. package/src/migrations/update-13-6-0/remove-old-task-runner-options.js.map +1 -1
  20. package/src/tasks-runner/life-cycles/dynamic-run-many-terminal-output-life-cycle.d.ts +1 -1
  21. package/src/tasks-runner/life-cycles/dynamic-run-many-terminal-output-life-cycle.js +3 -3
  22. package/src/tasks-runner/life-cycles/dynamic-run-many-terminal-output-life-cycle.js.map +1 -1
  23. package/src/tasks-runner/life-cycles/dynamic-run-one-terminal-output-life-cycle.d.ts +22 -0
  24. package/src/tasks-runner/life-cycles/dynamic-run-one-terminal-output-life-cycle.js +228 -0
  25. package/src/tasks-runner/life-cycles/dynamic-run-one-terminal-output-life-cycle.js.map +1 -0
  26. package/src/tasks-runner/run-command.js +13 -1
  27. package/src/tasks-runner/run-command.js.map +1 -1
  28. package/src/utilities/cache-directory.js +3 -3
  29. package/src/utilities/cache-directory.js.map +1 -1
  30. package/src/utilities/output.js +2 -1
  31. package/src/utilities/output.js.map +1 -1
  32. package/src/utils/versions.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nrwl/workspace",
3
- "version": "13.7.0",
3
+ "version": "13.8.0-beta.1",
4
4
  "description": "Smart, Fast and Extensible Build System",
5
5
  "repository": {
6
6
  "type": "git",
@@ -81,10 +81,10 @@
81
81
  "minimatch": "3.0.4",
82
82
  "enquirer": "~2.3.6",
83
83
  "tslib": "^2.3.0",
84
- "@nrwl/cli": "13.7.0",
85
- "@nrwl/devkit": "13.7.0",
86
- "@nrwl/jest": "13.7.0",
87
- "@nrwl/linter": "13.7.0"
84
+ "@nrwl/cli": "13.8.0-beta.1",
85
+ "@nrwl/devkit": "13.8.0-beta.1",
86
+ "@nrwl/jest": "13.8.0-beta.1",
87
+ "@nrwl/linter": "13.8.0-beta.1"
88
88
  },
89
89
  "nx-migrations": {
90
90
  "migrations": "./migrations.json"
@@ -684,30 +684,6 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
684
684
  SOFTWARE.
685
685
 
686
686
 
687
- webpack
688
- MIT
689
- Copyright JS Foundation and other contributors
690
-
691
- Permission is hereby granted, free of charge, to any person obtaining
692
- a copy of this software and associated documentation files (the
693
- 'Software'), to deal in the Software without restriction, including
694
- without limitation the rights to use, copy, modify, merge, publish,
695
- distribute, sublicense, and/or sell copies of the Software, and to
696
- permit persons to whom the Software is furnished to do so, subject to
697
- the following conditions:
698
-
699
- The above copyright notice and this permission notice shall be
700
- included in all copies or substantial portions of the Software.
701
-
702
- THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
703
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
704
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
705
- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
706
- CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
707
- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
708
- SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
709
-
710
-
711
687
  xstate
712
688
  MIT
713
689
  The MIT License (MIT)