ボム君.com

2016-11-01から1ヶ月間の記事一覧

react で 「Warning: It looks like you're using a minified copy .....」のwarningを消す方法

warning内容 以下のwarningの消し方に結構詰まったので共有。 Warning: It looks like you're using a minified copy of the development build of React. When deploying React apps to production, make sure to use the production build which skips dev…

webpack で react, scss のコンパイルと ESLint を設定する方法

webpackとは http://webpack.github.io webpackは依存関係のあるJSやCSSなどを、まとめてくれるビルドツールです。 webpackにはLoaderという仕組みがあり、ソースコードに適用する処理を柔軟に設定することができ、 そのLoaderを使うことで、scssやJSXなどで…

ReactでESLintを使う

ESLintの導入 まずはnpmからESLintをインストール $ npm install --save-dev eslint eslint-plugin-react 設定ファイルの生成 ESLint の魅力は、ルールを自由に設定出来ることです。 設定ファイルの生成は --init を使って設定ファイルを作成すると簡単です…