@nx/devkit
Advanced tools
Comparing version 20.3.0-beta.0 to 20.3.0-beta.1
{ | ||
"name": "@nx/devkit", | ||
"version": "20.3.0-beta.0", | ||
"version": "20.3.0-beta.1", | ||
"private": false, | ||
@@ -5,0 +5,0 @@ "description": "The Nx Devkit is used to customize Nx for different technologies and use cases. It contains many utility functions for reading and writing files, updating configuration, working with Abstract Syntax Trees(ASTs), and more. Learn more about [extending Nx by leveraging the Nx Devkit](https://nx.dev/extending-nx/intro/getting-started) on our docs.", |
@@ -58,4 +58,8 @@ "use strict"; | ||
// Errors are okay for this because we're only running 1 plugin | ||
if (e instanceof devkit_internals_1.ProjectConfigurationsError) { | ||
if ((0, devkit_internals_1.isProjectConfigurationsError)(e)) { | ||
projConfigs = e.partialProjectConfigurationsResult; | ||
// ignore errors from projects with no name | ||
if (!e.errors.every(devkit_internals_1.isProjectsWithNoNameError)) { | ||
throw e; | ||
} | ||
} | ||
@@ -93,4 +97,8 @@ else { | ||
// Errors are okay for this because we're only running 1 plugin | ||
if (e instanceof devkit_internals_1.ProjectConfigurationsError) { | ||
if ((0, devkit_internals_1.isProjectConfigurationsError)(e)) { | ||
projConfigs = e.partialProjectConfigurationsResult; | ||
// ignore errors from projects with no name | ||
if (!e.errors.every(devkit_internals_1.isProjectsWithNoNameError)) { | ||
throw e; | ||
} | ||
} | ||
@@ -97,0 +105,0 @@ else { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
208409
5134