nx 18.4.0-canary.20240417-801a22b → 18.4.0-canary.20240418-e549ea2
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.
- package/.eslintrc.json +4 -0
- package/bin/nx.js +7 -19
- package/package.json +12 -12
- package/src/command-line/init/implementation/react/check-for-uncommitted-changes.js +6 -3
- package/src/core/graph/main.js +1 -1
- package/src/daemon/cache.js +18 -0
- package/src/daemon/client/client.js +3 -4
- package/src/daemon/server/handle-hash-tasks.js +2 -2
- package/src/daemon/server/project-graph-incremental-recomputation.js +1 -2
- package/src/daemon/socket-utils.js +2 -2
- package/src/native/index.js +68 -259
- package/src/native/native-bindings.js +290 -0
- package/src/project-graph/error-types.d.ts +27 -1
- package/src/project-graph/error-types.js +52 -1
- package/src/project-graph/plugins/isolation/index.js +8 -4
- package/src/project-graph/plugins/isolation/plugin-pool.d.ts +1 -1
- package/src/project-graph/plugins/isolation/plugin-pool.js +4 -10
- package/src/project-graph/plugins/utils.js +1 -1
- package/src/project-graph/project-graph.d.ts +2 -24
- package/src/project-graph/project-graph.js +11 -52
- package/src/project-graph/utils/retrieve-workspace-files.d.ts +3 -3
- package/src/tasks-runner/init-tasks-runner.js +2 -0
- package/src/utils/dotenv.d.ts +7 -0
- package/src/utils/dotenv.js +22 -0
- package/src/daemon/daemon-project-graph-error.d.ts +0 -8
- package/src/daemon/daemon-project-graph-error.js +0 -13
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DaemonProjectGraphError = void 0;
|
|
4
|
-
class DaemonProjectGraphError extends Error {
|
|
5
|
-
constructor(errors, projectGraph, sourceMaps) {
|
|
6
|
-
super(`The Daemon Process threw an error while calculating the project graph. Convert this error to a ProjectGraphError to get more information.`);
|
|
7
|
-
this.errors = errors;
|
|
8
|
-
this.projectGraph = projectGraph;
|
|
9
|
-
this.sourceMaps = sourceMaps;
|
|
10
|
-
this.name = this.constructor.name;
|
|
11
|
-
}
|
|
12
|
-
}
|
|
13
|
-
exports.DaemonProjectGraphError = DaemonProjectGraphError;
|