web-dev-qa-db-ja.com

Webpack + Babel:ディレクトリに関連するプリセット「es2015」が見つかりませんでした

WebpackとBabelを使用したReactプロジェクトがあります。オフィスコンピューターで作成したとき、Webpackは正常に実行されました。

ERROR in ./react_minesweeper.jsx
Module build failed: Error: Couldn't find preset "es2015" relative to directory "/Users/louisstephancruz/Desktop"
at /Users/louisstephancruz/Desktop/w6d5/minesweeper/node_modules/babel-core/lib/transformation/file/options/option-manager.js:298:19
at Array.map (native)
at OptionManager.resolvePresets (/Users/louisstephancruz/Desktop/w6d5/minesweeper/node_modules/babel-core/lib/transformation/file/options/option-manager.js:269:20)

これが私のwebpack.config.js

module.exports = {
  entry: './react_minesweeper.jsx',
  output: {
    path: './',
    filename: 'bundle.js',
  },
  module: {
    loaders: [
      {
        test: [/\.jsx?$/, /\.js?$/],
        exclude: /(node_modules)/,
        loader: 'babel',
        query: {
          presets: ['es2015', 'react']
        }
      }
    ]
  },
  devtool: 'source-map',
  resolve: {
    extensions: ['', '.js', '.jsx' ]
  }
};

これが私のpackage.json

{
  "name": "minesweeper",
  "version": "1.0.0",
  "description": "",
  "main": "webpack.config.js",
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1",
    "start": "webpack-dev-server --inline"
  },
  "keywords": [],
  "author": "",
  "license": "ISC",
  "devDependencies": {
    "babel": "^6.5.2",
    "babel-core": "^6.17.0",
    "babel-loader": "^6.2.5",
    "babel-preset-es2015": "^6.16.0",
    "babel-preset-react": "^6.16.0",
    "webpack": "^1.13.2",
    "webpack-dev-server": "^1.16.2"
  },
  "dependencies": {
    "react": "^15.3.2",
    "react-dom": "^15.3.2"
  }
}

ノードの私のバージョンは:v5.6.0 npmの私のバージョンは:3.6.0

17
Louis Cruz

npm iまたはnpm install

package.json依存関係とdev依存関係にすべてのパッケージをインストールする必要があります(NODE_ENV環境変数がproductionと等しくない限り)。


特定のパッケージがインストールされているかどうかを確認するには、次を実行します。

npm ls babel-preset-es2015

何らかの理由でNODE_ENVproductionであり、dev依存関係をインストールする場合は、次を使用できます。

npm install --only=dev

逆に、次のコードは、既にビルドされたコードを処理しており、開発の依存関係にアクセスする必要がない本番マシンで使用できます。

npm install --only=prod


リポジトリのルートに次の内容の.babelrcを作成することをお勧めします。

{ "presets": [ "es2015", "react" ] }


Webpackの設定では、他のオプションを指定することもできます。

{ context: __dirname
, resolve: { root: __dirname, extensions: [ '.js', '.jsx', '.json' ] }
}

残りの設定に加えて、これはwebpackにバンドルのルートディレクトリの場所とモジュールとして扱うファイル拡張子(require/importステートメントで省略できる拡張子)を伝えます)。

そのビットの詳細については、webpackの resolve.extensions をチェックすることをお勧めします。

30
cchamberlain
npm install babel-preset-es2015

それは役立ちますか?

29
haboutnnah

「/ Users/username」ディレクトリから.babelrc(非表示)ファイルを削除したときに、この問題を解決しました。

9
Ihor Khomiak