私はwebpackが初めてなので、ソースマップを生成するための設定を行う必要があります。私はwebpack serve
をコマンドラインから実行しています。しかし、私は本当にソースマップが必要です。これは私のwebpack.config.js
です。
var webpack = require('webpack');
module.exports = {
output: {
filename: 'main.js',
publicPath: '/assets/'
},
cache: true,
debug: true,
devtool: true,
entry: [
'webpack/hot/only-dev-server',
'./src/components/main.js'
],
stats: {
colors: true,
reasons: true
},
resolve: {
extensions: ['', '.js', '.jsx'],
alias: {
'styles': __dirname + '/src/styles',
'mixins': __dirname + '/src/mixins',
'components': __dirname + '/src/components/',
'stores': __dirname + '/src/stores/',
'actions': __dirname + '/src/actions/'
}
},
module: {
preLoaders: [{
test: /\.(js|jsx)$/,
exclude: /node_modules/,
loader: 'jsxhint'
}],
loaders: [{
test: /\.(js|jsx)$/,
exclude: /node_modules/,
loader: 'react-hot!babel-loader'
}, {
test: /\.sass/,
loader: 'style-loader!css-loader!sass-loader?outputStyle=expanded&indentedSyntax'
}, {
test: /\.scss/,
loader: 'style-loader!css!sass'
}, {
test: /\.(png|jpg|woff|woff2)$/,
loader: 'url-loader?limit=8192'
}]
},
plugins: [
new webpack.HotModuleReplacementPlugin(),
new webpack.NoErrorsPlugin()
]
};
私は本当にWebpackに慣れていません、そして私がこの問題が具体的に何であるかについてわからないのでドキュメントが本当に助けになっていないのに探しています。
多分他の誰かがある時点でこの問題を抱えています。 webpack 2
でUglifyJsPlugin
を使用する場合は、sourceMap
フラグを明示的に指定する必要があります。例えば:
new webpack.optimize.UglifyJsPlugin({ sourceMap: true })
ソースマップを含むjsx用の最小Webパック設定:
var path = require('path');
var webpack = require('webpack');
module.exports = {
entry: `./src/index.jsx` ,
output: {
path: path.resolve(__dirname,"build"),
filename: "bundle.js"
},
devtool: 'eval-source-map',
module: {
loaders: [
{
test: /.jsx?$/,
loader: 'babel-loader',
exclude: /node_modules/,
query: {
presets: ['es2015', 'react']
}
}
]
},
};
実行する
Jozsefs-MBP:react-webpack-babel joco$ webpack -d
Hash: c75d5fb365018ed3786b
Version: webpack 1.13.2
Time: 3826ms
Asset Size Chunks Chunk Names
bundle.js 1.5 MB 0 [emitted] main
bundle.js.map 1.72 MB 0 [emitted] main
+ 221 hidden modules
Jozsefs-MBP:react-webpack-babel joco$
dev + production 用に最適化しているなら、あなたの設定で次のようなことを試すことができます。
{
devtool: dev ? 'eval-cheap-module-source-map' : 'source-map',
}
私はwebpack 2.1.0-beta.19を使っています
Webpack 2では、12のdevtoolオプションすべてを試しました。次のオプションは、コンソールの元のファイルにリンクし、行番号を保存します。下記の注を参照してください。
https://webpack.js.org/configuration/devtool
devtool最適なdevオプション
build rebuild quality look
eval-source-map slow pretty fast original source worst
inline-source-map slow slow original source medium
cheap-module-eval-source-map medium fast original source (lines only) worst
inline-cheap-module-source-map medium pretty slow original source (lines only) best
行のみ
ソースマップは1行に1つのマッピングに簡略化されています。これは通常、ステートメントごとに単一のマッピングを意味します(作成者がこの方法であると仮定して)。これにより、文レベルで実行をデバッグしたり、行の列にブレークポイントを設定したりできなくなります。ミニマイザは通常1行しか出力しないため、最小化と組み合わせることはできません。
これを見直す
大規模プロジェクトでは、eval-source-mapの再構築にかかる時間は約3.5秒です。
私が直面した同じ問題でさえ、ブラウザではコンパイルされたコードを見せていました。私はwebpackの設定ファイルを以下のように変更しましたが、現在はうまく機能しています。
devtool: '#inline-source-map',
debug: true,
そしてローダーで私は最初の選択としてbabel-loaderを保った
loaders: [
{
loader: "babel-loader",
include: [path.resolve(__dirname, "src")]
},
{ test: /\.js$/, exclude: [/app\/lib/, /node_modules/], loader: 'ng-annotate!babel' },
{ test: /\.html$/, loader: 'raw' },
{
test: /\.(jpe?g|png|gif|svg)$/i,
loaders: [
'file?hash=sha512&digest=hex&name=[hash].[ext]',
'image-webpack?bypassOnDebug&optimizationLevel=7&interlaced=false'
]
},
{test: /\.less$/, loader: "style!css!less"},
{ test: /\.styl$/, loader: 'style!css!stylus' },
{ test: /\.css$/, loader: 'style!css' }
]