Sourcemaps 不适用于 gulp 中的 coffeescript 和 webpack

Sourcemaps don't work with coffeescript and webpack in gulp

我正在用 coffeescript 编写应用程序并使用 gulp 构建前端。我当前的开发版本看起来像这样

gulp.task 'coffee', ->
    gulp.src('./coffee/*.coffee')
        .pipe do plumber
        .pipe sourcemaps.init()
        .pipe coffee bare: true
        .pipe sourcemaps.write()
        .pipe gulp.dest './pre-js/'

gulp.task 'webpack', ['coffee'], ->
    return gulp.src('pre-js/main.js')
        .pipe webpack require './webpack.config.js'
        .pipe gulp.dest 'dist/js/'

目前在coffee目录中我只有两个文件main.coffeestyles.coffee,我的webpack.config看起来像这样

module.exports = {
  entry: "./pre-js/main.js",
  output: {
    path: __dirname,
    filename: "main.js"
  },
  module: {
    loaders: [
      { test: /\.css$/, loader: "style!css" }
    ]
  },
  target: "web"
};

在我添加 webpack 之前,我的 sourcemaps 可以正常工作,我可以轻松地从控制台跟踪所有内容。一旦我添加了 webpack,所有 console.log 都指向 styles.coffee。我注意到此时没有缩小。

如何修复我的构建过程以继续编写模块化应用程序,同时能够利用 sourcemaps 的优势?

webpack 配置文件

中缺少 devtool: "source-map"