Skip to content
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

Merged

Conversation

arafubeatbox
Copy link
Contributor

@arafubeatbox arafubeatbox commented Dec 30, 2024

目的

slackbot-proxy の CI が落ちる問題を解決する

エラーの原因と修正

1. 現状 CI で表示されているエラー

原因

pdf-converter で使用されている @tsed/logger が hoisting された結果、そちらが読み込まれるようになってしまった

修正

明示的に @tsed/logger のバージョンを指定

2. 1 が解決した後に生じるエラー

以下のようなエラーが @tsed/core, @tsed/schema, @tsed/exceptions, @tsed/common, @tsed/di について生じる

Error [ERR_REQUIRE_ESM]: require() of ES Module /workspace/growi/node_modules/.pnpm/@tsed+core@8.3.5/node_modules/@tsed/core/lib/esm/index.js from /workspace/growi/node_modules/.pnpm/@tsed+platform-express@6.43.0_@types+multer@1.4.12_body-parser@1.20.3/node_modules/@tsed/platform-express/lib/components/PlatformExpress.js not supported.

原因

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

Copy link

changeset-bot bot commented Dec 30, 2024

⚠️ No Changeset found

Latest commit: 3d3edba

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@arafubeatbox arafubeatbox marked this pull request as ready for review December 30, 2024 04:45
@@ -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',
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@yuki-takei yuki-takei merged commit e6e1012 into feat/135772-pdf-page-bulk-export Dec 31, 2024
16 checks passed
@yuki-takei yuki-takei deleted the fix/157427-157741-slackbot-ci-fail branch December 31, 2024 07:17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

Successfully merging this pull request may close these issues.

2 participants