-
Notifications
You must be signed in to change notification settings - Fork 218
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix slackbot proxy ci fail #9535
fix slackbot proxy ci fail #9535
Conversation
|
@@ -24,5 +24,6 @@ module.exports = { | |||
|
|||
// set 'warn' temporarily -- 2022.07.13 Yuki Takei | |||
'@typescript-eslint/no-explicit-any': ['warn'], | |||
'@typescript-eslint/consistent-type-imports': 'off', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
e6e1012
into
feat/135772-pdf-page-bulk-export
目的
slackbot-proxy の CI が落ちる問題を解決する
エラーの原因と修正
1. 現状 CI で表示されているエラー
原因
pdf-converter で使用されている @tsed/logger が hoisting された結果、そちらが読み込まれるようになってしまった
修正
明示的に @tsed/logger のバージョンを指定
2. 1 が解決した後に生じるエラー
以下のようなエラーが @tsed/core, @tsed/schema, @tsed/exceptions, @tsed/common, @tsed/di について生じる
原因
1 と似た原因。slackbot-proxy と pdf-converter では異なる ts.ed のバージョンを使用している (6.43.0 と 8.3.5) が、slackbot-proxy 内で pnpm によって hoisting された pdf-converter の方の ts.ed のバージョンが使用されてしまっていた。
1 と異なる点は、エラーが生じているパッケージについては既に明示的に apps/slackbot-proxy/package.json でバージョン指定がされており、pnpm install 後は apps/slackbot-proxy/node-modules に 6.43.0 のものが存在するが、何故か hoist された /workspace/growi/node_modules のものが読み込まれてしまう。
同様の issue が pnpm/pnpm#7158 に起票されていた。
修正
pnpm/pnpm#7158 (comment) に記載されている修正方法を参考に、tsconfig に paths を追加し、slackbot-proxy の tsc に強制的に apps/slackbot-proxy/node-modules を参照するように設定
task
https://redmine.weseek.co.jp/issues/157741