如何在使用babel和webpack时生成源图?

时间:2015-06-16 14:41:43

标签: javascript webpack build-process babeljs source-maps

我是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很陌生,看起来文档并没有真正帮助,因为我不确定这个问题的具体内容。

7 个答案:

答案 0 :(得分:371)

要使用源地图,您应该将devtool选项true更改为{{3}中可用的例如source-map

devtool: 'source-map'
  

this list'source-map' - 发出一个SourceMap。

答案 1 :(得分:98)

也许其他人一直有这个问题。如果您使用UglifyJsPlugin中的webpack 2,则需要明确指定sourceMap标记。例如:

new webpack.optimize.UglifyJsPlugin({ sourceMap: true })

答案 2 :(得分:28)

使用源映射的jsx的最小webpack配置:

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$

答案 3 :(得分:13)

如果针对dev + production进行优化,您可以在配置中尝试以下内容:

{
  devtool: dev ? 'eval-cheap-module-source-map' : 'source-map',
}

From the docs:

  • devtool:" eval-cheap-module-source-map" 提供仅映射行(没有列映射)且速度更快的SourceMaps
  • devtool:" source-map" 无法为模块缓存SourceMaps,需要为块重新生成完整的SourceMap。这是生产的东西。

我正在使用webpack 2.1.0-beta.19

答案 4 :(得分:5)

在Webpack 2上,我尝试了所有12个devtool选项。以下选项链接到控制台中的原始文件并保留行号。请参阅下面的注释:仅限行。

https://webpack.js.org/configuration/devtool

devtool最佳开发选项

                                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

源地图被简化为每行一个映射。 这通常意味着每个语句的单个映射(假设您的作者是这样的)。 这可以防止您在语句级别和行的列上的设置断点上调试执行。 由于最小化器通常只发射一条线,因此无法将最小化结合起来。

重新审视

在一个大型项目中,我发现... eval-source-map重建时间约为3.5s ...内联源映射重建时间为~7s

答案 5 :(得分:3)

即使我面临同样的问题,在浏览器中它显示的是编译代码。我在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' }
]

答案 6 :(得分:-7)

你可以尝试Dawn,它更简单

https://github.com/alibaba/dawn

示例:

安装

npm i dawn -g

.dawn.yml文件添加到项目中

build:
  - name: webpack
    output: ./dist
    entry: ./src/*.js
    template: ./assets/*.html
    sourceMap: true

执行以下命令

dn build

您可以完成构建