ツー

日常の記録

3年前くらいの古いcreate-react-appを最新に追随する

やらなくて済むのならそれがいいけれど、やらなきゃいけなくなってクッソめんどくさかったのでメモ。

Version

  • react & react-dom 15.6.2 -> 17.0.2
  • react-script 1.1.4 -> 4.0.3

upgrade されていない dependencyでwebpackが競合する

とりあえず雑に package-lock.jsonnode_modules を削除して npm install して npm run build だ!!

とやると以下のようなエラーになる。

The react-scripts package provided by Create React App requires a dependency:

  "webpack": "4.44.2"

Don't try to install it manually: your package manager does it automatically.
However, a different version of webpack was detected higher up in the tree:

  /xxxxxxxxxx/node_modules/webpack (version: 5.43.0)

Manually installing incompatible versions is known to cause hard-to-debug issues.

If you would prefer to ignore this check, add SKIP_PREFLIGHT_CHECK=true to an .env file in your project.
That will permanently disable this message but you might encounter other issues.

To fix the dependency tree, try following the steps below in the exact order:

  1. Delete package-lock.json (not package.json!) and/or yarn.lock in your project folder.
  2. Delete node_modules in your project folder.
  3. Remove "webpack" from dependencies and/or devDependencies in the package.json file in your project folder.
  4. Run npm install or yarn, depending on the package manager you use.

In most cases, this should be enough to fix the problem.
If this has not helped, there are a few other things you can try:

  5. If you used npm, install yarn (http://yarnpkg.com/) and repeat the above steps with it instead.
     This may help because npm has known issues with package hoisting which may get resolved in future versions.

  6. Check if /home/nikochan/src/github.com/celeron1ghz/Acceptessa/client/admission/node_modules/webpack is outside your project directory.
     For example, you might have accidentally installed something in your home folder.

  7. Try running npm ls webpack in your project folder.
     This will tell you which other package (apart from the expected react-scripts) installed webpack.

If nothing else helps, add SKIP_PREFLIGHT_CHECK=true to an .env file in your project.
That would permanently disable this preflight check in case you want to proceed anyway.

P.S. We know this message is long but please read the steps above :-) We hope you find them helpful!

まぁ書いてある通りだけど、1~6をやっても解決しないので7をやる。

app@0.1.0 /home/xxxxxxxx/xxxxxx
├─┬ react-scripts@4.0.3
│ └── UNMET PEER DEPENDENCY webpack@4.44.2
└── webpack@5.43.0
  • 競合していてうごかんやつですね。
  • これだけじゃなく、UIライブラリも上記みたいな感じでbabelが競合していたのでUIライブラリは一回捨てた。
  • ごく数か所だけ使われていたものだったので後で直す。

devDependencies でwebpackを指定しなくてもよくなっていた

上記事項の続き。

app@0.1.0 /home/xxxxxxxx/xxxxxx
├─┬ react-scripts@4.0.3
│ └── UNMET PEER DEPENDENCY webpack@4.44.2
└── webpack@5.43.0
  • react-scripts が依存しているのはいいとして、自分のプロジェクトで依存しているのは何?
  • devDependencies にいるね。削除したらいいのかな
  • 削除してビルドしたら動いたわ

react-scripts/config/webpack.config.prod.js がいなくなった

独自のビルドスクリプトreact-scripts/config/webpack.config.prod.js を読み込んで作っていたがそもそもファイルがいなくなった。

https://github.com/timarney/react-app-rewired/issues/370

create-react-app の2.x で react-scripts/config/webpack.config.js に統合されたらしいので読込先を変える

勝手にchunkにしないでほしい

先ほどの続き。

現代のプラクティスとしてはchunkに分けるのは正しいが、昔のコードなのでそういうのに対応できないので、とりあえずchunkに分けずに一つにファイルにまとめてほしい。

あとstatic直下に出力されるので一個ディレクトリをかませたい。(ディレクトリ名は package.jsonconfig.project に指定)

というわけで下記のようにビルドスクリプトを変える

'use strict';

if (!process.env.npm_package_config_project) {
  throw 'env "npm_package_config_project" is not set';
}

process.env.NODE_ENV = 'production';

const project = process.env.npm_package_config_project;
console.log("Building", project, "...");

const webpack = require('webpack');
const config = require('react-scripts/config/webpack.config.js')("production");

// disable file chunk
config.output.filename = './static/' + project + '/js/bundle.js';
config.optimization.splitChunks = { cacheGroups: { default: false } };
config.optimization.runtimeChunk = false;
config.module.rules[1].oneOf[8].options.name = "static/" + project + "/media/[name].[hash:8].[ext]";

for (const p of config.plugins) {
  const o = p.options;
  if (o && o.filename && o.filename.match(/\.css$/)) {
    o.filename = './static/' + project + '/css/bundle.css';
  }
}

webpack(config).run((err) => {
  console.log("Build complete.");
  console.log("Error is", err);
});

まとめ

単純にアップグレードしただけなので、prop-typesを捨てたり、TypeScript化したり、bootstrapのバージョンをあげたりとクソほどやることあるが、setupProxy.js とかが使えるようになったのでこれで良しとする。

nodejsは変化が激しすぎて、しばらく放置すると地獄のような体験を得られる。