1
私はReactOnRailsアプリを使用していて、node-modules
フォルダにnpm
を使用してインストールされたパッケージがあります。どのようにしてapp/assets/javascript/application.js
でこれらのjavascriptライブラリを利用できるようにすることができますか?jquery
を私のモジュールと私のGemfile
にインストールする必要はありませんか?ウェブパック付きのレール
これは私のWebPACKの設定ファイルである:
/* eslint comma-dangle: ["error",
{"functions": "never", "arrays": "only-multiline", "objects":
"only-multiline"} ] */
const webpack = require('webpack');
const path = require('path');
const devBuild = process.env.NODE_ENV !== 'production';
const nodeEnv = devBuild ? 'development' : 'production';
const config = {
entry: [
'es5-shim/es5-shim',
'es5-shim/es5-sham',
'babel-polyfill',
'./app/bundles/Home/startup/registration',
],
output: {
filename: 'webpack-bundle.js',
path: '../app/assets/webpack',
},
resolve: {
extensions: ['', '.js', '.jsx'],
alias: {
react: path.resolve('./node_modules/react'),
'react-dom': path.resolve('./node_modules/react-dom'),
},
},
plugins: [
new webpack.DefinePlugin({
'process.env': {
NODE_ENV: JSON.stringify(nodeEnv),
},
}),
],
module: {
loaders: [
{
test: require.resolve('react'),
loader: 'imports?shim=es5-shim/es5-shim&sham=es5-shim/es5-sham',
},
{
test: /\.jsx?$/,
loader: 'babel-loader',
exclude: /node_modules/,
},
],
},
};
module.exports = config;
if (devBuild) {
console.log('Webpack dev build for Rails'); // eslint-disable-line no-console
module.exports.devtool = 'eval-source-map';
} else {
config.plugins.push(
new webpack.optimize.DedupePlugin()
);
console.log('Webpack production build for Rails'); // eslint-disable-line no-console
}
Webpackerを代わりに使用すると考えましたか? https://github.com/rails/webpacker Rails 5.1はwebpackを正式にサポートします:https://github.com/rails/rails/pull/27288 – Peter
Webpackerについてはまだ聞いていません。確認してみるよ。 そして、それはレール5.1についての素晴らしいニュースです! – Ancinek