nx 20.0.10 → 20.1.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.
- package/package.json +11 -37
- package/src/adapter/angular-json.js +2 -8
- package/src/command-line/format/command-object.js +9 -0
- package/src/command-line/format/format.js +3 -1
- package/src/core/graph/main.js +1 -1
- package/src/core/graph/styles.js +1 -1
- package/src/devkit-internals.d.ts +1 -0
- package/src/devkit-internals.js +3 -1
- package/src/native/nx.wasm32-wasi.wasm +0 -0
- package/src/plugins/js/utils/config.js +2 -9
- package/src/project-graph/utils/project-configuration-utils.js +4 -2
- package/src/utils/command-line-utils.d.ts +1 -0
- package/src/utils/print-help.js +3 -9
package/src/core/graph/styles.js
CHANGED
@@ -1 +1 @@
|
|
1
|
-
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[532],{
|
1
|
+
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([[532],{8476:()=>{}},s=>{var e;e=8476,s(s.s=e)}]);
|
@@ -24,3 +24,4 @@ export { LoadedNxPlugin } from './project-graph/plugins/internal-api';
|
|
24
24
|
export * from './project-graph/error-types';
|
25
25
|
export { registerTsProject } from './plugins/js/utils/register';
|
26
26
|
export { interpolate } from './tasks-runner/utils';
|
27
|
+
export { isCI } from './utils/is-ci';
|
package/src/devkit-internals.js
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.interpolate = exports.registerTsProject = exports.LoadedNxPlugin = exports.retrieveProjectConfigurations = exports.findProjectForPath = exports.createProjectRootMappingsFromProjectConfigurations = exports.hashWithWorkspaceContext = exports.hashObject = exports.splitByColons = exports.readModulePackageJson = exports.stripIndent = exports.sortObjectByKeys = exports.combineOptionsForExecutor = exports.splitTarget = exports.findMatchingConfigFiles = exports.readProjectConfigurationsFromRootMap = exports.mergeTargetConfigurations = exports.retrieveProjectConfigurationsWithAngularProjects = exports.calculateDefaultProjectName = exports.readNxJsonFromDisk = exports.getExecutorInformation = exports.createTempNpmDirectory = void 0;
|
3
|
+
exports.isCI = exports.interpolate = exports.registerTsProject = exports.LoadedNxPlugin = exports.retrieveProjectConfigurations = exports.findProjectForPath = exports.createProjectRootMappingsFromProjectConfigurations = exports.hashWithWorkspaceContext = exports.hashObject = exports.splitByColons = exports.readModulePackageJson = exports.stripIndent = exports.sortObjectByKeys = exports.combineOptionsForExecutor = exports.splitTarget = exports.findMatchingConfigFiles = exports.readProjectConfigurationsFromRootMap = exports.mergeTargetConfigurations = exports.retrieveProjectConfigurationsWithAngularProjects = exports.calculateDefaultProjectName = exports.readNxJsonFromDisk = exports.getExecutorInformation = exports.createTempNpmDirectory = void 0;
|
4
4
|
const tslib_1 = require("tslib");
|
5
5
|
/**
|
6
6
|
* Note to developers: STOP! These exports are available via requireNx in @nx/devkit.
|
@@ -50,3 +50,5 @@ var register_1 = require("./plugins/js/utils/register");
|
|
50
50
|
Object.defineProperty(exports, "registerTsProject", { enumerable: true, get: function () { return register_1.registerTsProject; } });
|
51
51
|
var utils_1 = require("./tasks-runner/utils");
|
52
52
|
Object.defineProperty(exports, "interpolate", { enumerable: true, get: function () { return utils_1.interpolate; } });
|
53
|
+
var is_ci_1 = require("./utils/is-ci");
|
54
|
+
Object.defineProperty(exports, "isCI", { enumerable: true, get: function () { return is_ci_1.isCI; } });
|
Binary file
|
@@ -6,7 +6,7 @@ const fileutils_1 = require("../../../utils/fileutils");
|
|
6
6
|
const workspace_root_1 = require("../../../utils/workspace-root");
|
7
7
|
const fs_1 = require("fs");
|
8
8
|
function jsPluginConfig(nxJson) {
|
9
|
-
const nxJsonConfig = nxJson?.pluginsConfig?.['@nx/js']
|
9
|
+
const nxJsonConfig = nxJson?.pluginsConfig?.['@nx/js'];
|
10
10
|
// using lerna _before_ installing deps is causing an issue when parsing lockfile.
|
11
11
|
// See: https://github.com/lerna/lerna/issues/3807
|
12
12
|
// Note that previous attempt to fix this caused issues with Nx itself, thus we're checking
|
@@ -42,14 +42,7 @@ function jsPluginConfig(nxJson) {
|
|
42
42
|
packageJsonDeps['@nx/next'] ||
|
43
43
|
packageJsonDeps['@nx/react'] ||
|
44
44
|
packageJsonDeps['@nx/angular'] ||
|
45
|
-
packageJsonDeps['@nx/web']
|
46
|
-
packageJsonDeps['@nrwl/workspace'] ||
|
47
|
-
packageJsonDeps['@nrwl/js'] ||
|
48
|
-
packageJsonDeps['@nrwl/node'] ||
|
49
|
-
packageJsonDeps['@nrwl/next'] ||
|
50
|
-
packageJsonDeps['@nrwl/react'] ||
|
51
|
-
packageJsonDeps['@nrwl/angular'] ||
|
52
|
-
packageJsonDeps['@nrwl/web']) {
|
45
|
+
packageJsonDeps['@nx/web']) {
|
53
46
|
return {
|
54
47
|
analyzePackageJson: true,
|
55
48
|
analyzeLockfile,
|
@@ -253,8 +253,10 @@ plugins) {
|
|
253
253
|
else {
|
254
254
|
errorBodyLines.push(` - ${e.message}`);
|
255
255
|
}
|
256
|
-
|
257
|
-
|
256
|
+
if (e.stack) {
|
257
|
+
const innerStackTrace = ' ' + e.stack.split('\n')?.join('\n ');
|
258
|
+
errorBodyLines.push(innerStackTrace);
|
259
|
+
}
|
258
260
|
}
|
259
261
|
error.stack = errorBodyLines.join('\n');
|
260
262
|
// This represents a single plugin erroring out with a hard error.
|
@@ -34,6 +34,7 @@ export interface NxArgs {
|
|
34
34
|
batch?: boolean;
|
35
35
|
excludeTaskDependencies?: boolean;
|
36
36
|
skipSync?: boolean;
|
37
|
+
sortRootTsconfigPaths?: boolean;
|
37
38
|
}
|
38
39
|
export declare function createOverrides(__overrides_unparsed__?: string[]): Record<string, any>;
|
39
40
|
export declare function getBaseRef(nxJson: NxJsonConfiguration): string;
|
package/src/utils/print-help.js
CHANGED
@@ -110,9 +110,7 @@ function generateExecutorOverviewOutput({ pluginName, name, description, }) {
|
|
110
110
|
},
|
111
111
|
{
|
112
112
|
text: `${pluginName}:${name}` +
|
113
|
-
(pluginName.startsWith('@
|
114
|
-
? chalk.dim(` (v${versions_1.nxVersion})`)
|
115
|
-
: ''),
|
113
|
+
(pluginName.startsWith('@nx/') ? chalk.dim(` (v${versions_1.nxVersion})`) : ''),
|
116
114
|
padding: [1, 0, 0, 0],
|
117
115
|
},
|
118
116
|
]);
|
@@ -220,14 +218,10 @@ function generateExamplesOutput(schema) {
|
|
220
218
|
// TODO: generalize link generation so it works for non @nx plugins as well
|
221
219
|
function generateLinkOutput({ pluginName, name, type, }) {
|
222
220
|
const nxPackagePrefix = '@nx/';
|
223
|
-
|
224
|
-
if (!pluginName.startsWith(nxPackagePrefix) &&
|
225
|
-
!pluginName.startsWith(nrwlPackagePrefix)) {
|
221
|
+
if (!pluginName.startsWith(nxPackagePrefix)) {
|
226
222
|
return '';
|
227
223
|
}
|
228
|
-
const link = `https://nx.dev/nx-api/${pluginName.substring(
|
229
|
-
? nxPackagePrefix.length
|
230
|
-
: nrwlPackagePrefix.length)}/${type}/${name}`;
|
224
|
+
const link = `https://nx.dev/nx-api/${pluginName.substring(nxPackagePrefix.length)}/${type}/${name}`;
|
231
225
|
return `\n\n${chalk.dim('Find more information and examples at:')} ${chalk.bold(link)}`;
|
232
226
|
}
|
233
227
|
/**
|