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


328

我是webpack的新手,我需要进行设置以生成Sourcemap。我正在webpack serve从命令行运行,该命令行已成功编译。但是我真的需要sourcemap。这是我的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的新手,虽然我不确定这个问题是针对什么的,但是文档并没有真正帮助。


仅供参考,我没有为版本2添加调试,我得到了The 'debug' property was removed in webpack 2.
shareef,

Answers:


435

为了使用源映射,您应该将devtool选项从更改为例如中可用truethis listsource-map

devtool: 'source-map'

devtool'source-map'-发出SourceMap。


12
denug属性已在webpack 2中删除。–
jnns

@jnns替换了什么?
布拉德(Brad)

6
我可以确认(webpack 3.5):devtool足够了。不需要任何调试值。
Frank Nocke

只是想补充一点,如果您使用的是React,则应该为其找到特定的配置(create-react-app)。
凌晨

实际将文件输出到哪里?
墨尔本开发商

107

也许其他人在某一时刻有这个问题。如果使用UglifyJsPluginin webpack 2,则需要显式指定sourceMap标志。例如:

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

9
我还必须包括devtool: 'source-map'它才能正常工作
Vic

1
我必须将此包含在css和sass加载程序选项中。
d_rail

33

带有源映射的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$

15

如果针对开发+生产进行了优化,则可以在配置中尝试如下操作:

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

从文档:

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

我正在使用webpack 2.1.0-beta.19



dev变量在哪里/如何设置?
克里斯

在典型的情况下,您可能会看到.env文件定义或变种process.env。这只是一个例子,但可能看起来像这样:const dev = process.env.development === true
lfender6445

6

在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 ... inline-source-map的重建时间为〜7s


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
debug物业已在2的WebPack被删除
jnns

+1。添加include选项对我来说是固定的。在webpack 2中,它看起来像这样:rules: [{loader: 'babel-loader', include: [path.resolve(__dirname, "src")]
马特·布朗
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.