aglinxinyuan commented on PR #6235: URL: https://github.com/apache/texera/pull/6235#issuecomment-4910029653
The build was failing because `@ngx-formly/core` and `@ngx-formly/ng-zorro-antd` are published from the same monorepo and must share the exact same version — `ng-zorro-antd`'s peerDependency pins `core` to an exact version, and its fesm bundle imports internal `ɵ`-prefixed symbols from `core`. Bumping only `core` to 7.1.0 left `ng-zorro-antd` at 6.3.12, whose bundle imports `ɵFormlyAttributes` / `ɵFormlyValidationMessage` that no longer exist in `core` 7.1.0. Pushed a commit that bumps `@ngx-formly/ng-zorro-antd` to 7.1.0 in lockstep and regenerates `yarn.lock`. Verified the production frontend build (`yarn build:ci`) passes locally. This also supersedes #6234 (the standalone `ng-zorro-antd` bump), which fails the same way in reverse — that one can be closed. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
