-
Notifications
You must be signed in to change notification settings - Fork 27.1k
Description
🐞 Bug report
Command (mark with an x)
- build
Is this a regression?
Unknown. I am in the process of updating from Angular 10.x (where things build fine) to 13.x (where things are breaking), but it's unclear if this is a regression.
Description
I have two Angular library projects in a monorepo. Project B depends on Project A. Both are pretty small. When attempting to build both, Project A builds successfully but Project B fails with the following error:
Schema validation failed with the following errors:
Data path "/error" must be string.
It's unclear what schema the error is referring to and it's also unclear what Data path "/error" is referring to. If "schema" refers to angular.json in this context, it's unclear what Data path "/error" is referring to since an "error" key isn't documented for angular.json.
🔬 Minimal Reproduction
Clone the angular-cli-build-bug branch of my service-work/is-loading repo. The repo contains a .devcontainer.json file which can be used to quickly setup the dev environment.
- run
yarn install - (optional) run
yarn test. Tests should all pass. - run
yarn build. The@service-work/is-loadingproject should build successfully but the@service-work/scroll-positionlibrary should fail with the following message:Schema validation failed with the following errors: Data path "/error" must be string.
Note that the @service-work/scroll-position package depends on the @service-work/is-loading package. However, the only file in @service-work/scroll-position that actually imports from @service-work/is-loading is the projects/scroll-position/src/scroll-position/module/directive/scroll-position.directive.ts file. If you comment out the @service-work/is-loading import in that file, as well as the related code, then the @service-work/scroll-position file builds without error.
It's unclear if there's something wrong in my code which is preventing the project from building (in which case the provided error message should be improved to make clear what the problem is) or if there's a bug with the build script.
🔥 Exception or Error
Schema validation failed with the following errors:
Data path "/error" must be string.
🌍 Your Environment
Angular CLI: 13.2.2
Node: 12.22.7
Package Manager: yarn 1.22.15
OS: linux x64
Angular: 13.2.1
... animations, common, compiler, compiler-cli, core
... language-service, platform-browser, platform-browser-dynamic
... router
Package Version
---------------------------------------------------------
@angular-devkit/architect 0.1302.2
@angular-devkit/build-angular 13.2.2
@angular-devkit/core 13.2.2
@angular-devkit/schematics 13.2.2
@angular/cli 13.2.2
@schematics/angular 13.2.2
ng-packagr 13.2.1
rxjs 6.6.7
typescript 4.5.5
Anything else relevant?
- This repo is managed as a Yarn 1.x workspace.
- I don't think this is actually relevant, but I'll mention that my development computer is a M1 Pro Macbook Pro that is running an
x86_64devcontainer using qemu.