extract-text-webpack-plugin および Webpack 2 で react-widgets-webpack を使用するための指示に従おうとすると、次のエラーが発生します。
./~/react-widgets-webpack/index.loader.js!./react-widgets.config.js のエラー モジュールのビルドに失敗しました: エラー: 重大な変更: 抽出は単一の引数しか取りません。オプション オブジェクトまたはローダーのいずれか。例: 古いコードが次のような場合: ExtractTextPlugin.extract('style-loader', 'css-loader')
次のように変更します: ExtractTextPlugin.extract({ fallback: 'style-loader', use: 'css-loader' })
に変更
styleLoader: require('extract-text-webpack-plugin').extract({
fallback: "style-loader",
use: 'css-loader!less-loader'
})
次のエラーが発生します。
./~/react-widgets-webpack/index.loader.js!./react-widgets.config.js のエラー モジュールが見つかりません: エラー: '[object Object],[object Object],[object を解決できませんObject],[object Object]' in '/Users/pbirmingham/Development/FLA/forks/flash/flash'
私のwebpack.config.js:
const webpack = require('webpack');
const globalizePlugin = require('globalize-webpack-plugin');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const ExtractTextPlugin = require("extract-text-webpack-plugin");
module.exports = {
entry: {
app: [
'react-widgets-webpack!./react-widgets.config.js',
'bootstrap-loader',
'./js/main.js']
},
output: {
path: './public/',
filename: 'js/bundle-[hash].js',
},
module: {
rules: [
{test: /\.(js|jsx)$/, exclude: /node_modules/, use: 'babel-loader'},
{test: /\.json$/, use: 'json-loader'},
{
test: /\.(css|scss)$/,
use: ExtractTextPlugin.extract({
fallback: "style-loader",
use: ['css-loader', 'sass-loader']
})
},
{
test: /\.woff(2)?(\?v=[0-9]\.[0-9]\.[0-9])?$/,
use: "url-loader?name=[name].[hash].[ext]&limit=10000&mimetype=application/font-woff"
},
{test: /\.(ttf|eot|svg|gif)$/, use: "file-loader?name=[name].[hash].[ext]"},
{test: /bootstrap.+\.(jsx|js)$/, use: 'imports-loader?jQuery=jquery,$=jquery,this=>window'}
]
},
plugins: [
new ExtractTextPlugin({ filename: 'css/main.[contenthash].css'}),
new globalizePlugin({
production: false,
developmentLocale: "en",
supportedLocales: ["en"],
output: "globalize-compiled-data-[locale].[hash].js"
}),
new HtmlWebpackPlugin({
template: 'template/index.ejs',
chunks: ['app']
}),
new webpack.DefinePlugin({
'process.env': {
NODE_ENV: JSON.stringify('production')
}
})
]
}
他の誰かがこの動作を見たことがありますか?