gajus / gajus/babel-plugin-react-css-modules

Using aliases with composes and babel-plugin-module-resolver does not works

オープン
#280 コメント 0 件 リアクション 0 件 担当者 0 名 GitHub で見る
主要言語
JavaScript
スター
2k
フォーク
159
PR マージ指標
30日以内にマージされた PR はありません

説明

I'm trying to replace `react-css-modules` with this plugin. Most things work or have a simple solution, except for our use of aliases when composing classes. Previously we've used webpack and postcss-import to resolve the aliases, I don't expect that to work with a babel plugin.

@imports still work with aliases, even if I can't compose classes from a file loaded with `@import`. I can still do `composes: button from '../button.css` as long as the path is relative.

I've tried to set up the babel module-resolver by this comment https://github.com/gajus/babel-plugin-react-css-modules/issues/46#issuecomment-414130223

My config in .babelrc looks like this:

```json
{
"presets": [
"@babel/preset-react"
],
"plugins": [
[
"module-resolver",
{
"root": [
"../apps"
],
"alias": {
"@constants": "../shared/constants",
"@shared": "../shared",
"@common": "./common",
}
}
],
["react-css-modules", {
"exclude": "node_modules",
"handleMissingStyleName": "warn",
"filetypes": {
".pcss": {
"syntax": ""
}
}
}],
],
```

If I compose a class like this:

```
.button {
composes: reset-button from '@common/styles/elements/button.css';
}
```

I get this error, as it tries to load the path as relative.

```
ERROR in ./src/app/components/Panel/Participants/Participant/Participant.js
Module build failed (from ./node_modules/babel-loader/lib/index.js):
Error: ENOENT: no such file or directory, open '/[rootpath]/apps/src/app/components/Panel/Participants/Participant/@common/styles/elements/button.css'
at Object.openSync (fs.js:443:3)
at readFileSync (fs.js:343:35)
at getTokens (/[rootpath]/apps/node_modules/babel-plugin-react-css-modules/dist/requireCssModule.js:74:58)
at fetch (/[rootpath]/apps/node_modules/babel-plugin-react-css-modules/dist/requireCssModule.js:100:12)
at /[rootpath]/apps/node_modules/postcss-modules-parser/lib/index.js:74:20
```

Am I mistaken when I expect `babel-plugin-react-css-modules` to respect rules set with `babel-plugin-module-resolver` in `compose` statements?

コントリビューションガイド

このリポジトリのコントリビューションガイドは索引されていません

調査の方向性

.babelrc の module-resolver 設定と compose の例から始め、次に getTokens と fetch における requireCssModule.js、および stack trace に示されている postcss-modules-parser の呼び出しを調べます。エイリアスと相対パスのケースを再現し、compose の解決で設定済みのエイリアスを使用すべきか判断します。エイリアスのケースが ENOENT エラーなしで解決され、既存の相対インポートが引き続き動作すれば完了です。

索引モデルが issue の本文から書いたものです。

評価

技術スタック
babel, javascript, react
領域
frontend, tooling
issue の種類
バグ
難易度
3/5
見積もり時間
1〜2日
活発さ
停滞
明瞭さ
おおむね明確
初心者へのやさしさ
45/100

新しい issue をメールで受け取る

初心者向けの GitHub issue を短くまとめたダイジェスト。