这是最烦人的问题。我已经遇到了this before here,但是我在webpack配置和gulp中有相同的设置,我无法在Chrome Devtools中正确设置断点。
我删除了我的应用文件和地图,重新运行了gulp webpack
,再次自动生成它,但它仍然没有在应用中突破我想要的地方:(
Webpack配置
var webpack = require('webpack');
var PROD = JSON.parse(process.env.PROD_DEV || '0');
// https://stackoverflow.com/questions/25956937/how-to-build-minified-and-uncompressed-bundle-with-webpack
module.exports = {
entry: "./entry.js",
devtool: "source-map",
output: {
devtoolLineToLine: true,
sourceMapFilename: "tickertags.bundle.js.map",
pathinfo: true,
path: __dirname,
filename: PROD ? "tickertags.bundle.min.js" : "tickertags.bundle.js"
},
module: {
loaders: [
{ test: /\.css$/, loader: "style!css" }
]
},
plugins: PROD ? [
new webpack.optimize.UglifyJsPlugin({ minimize: true })
] : []
};
Gulp任务
gulp.task('webpack',['build:html-templates'],function() {
return gulp.src('entry.js')
.pipe(webpack( require('./webpack.config.js') ))
.pipe(gulp.dest('app/assets/js'));
});
// Development watch /////////////////////////////////////////////////////////// ☕️⏎→
gulp.task('watch', function() {
gulp.watch('app/**/**/*.html', ['build:html-templates']).on('change', function(file) {
var filePath = file.path.split(rootPath);
process.stdout.write(gutil.colors.red(' →→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→ ' +filePath[1]+ '\n'));
});
gulp.watch('app/assets/imgs/*.svg').on('change', function(file) {
var filePath = file.path.split(rootPath);
process.stdout.write(gutil.colors.red(' →→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→ ' +filePath[1]+ '\n'));
});
gulp.watch('sass-smacss/sass/**/*.scss', ['app-css']).on('change', function(file) {
var filePath = file.path.split(rootPath);
process.stdout.write(gutil.colors.red(' →→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→ ' +filePath[1]+ '\n'));
});
gulp.watch(paths.scripts, ['webpack']).on('change', function(file) {
var filePath = file.path.split(rootPath);
process.stdout.write(gutil.colors.red(' →→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→→ ' +filePath[1]+ '\n'));
});
});
gulp.task('default', ['watch', 'webpack']);
答案 0 :(得分:1)
当前版本的Chrome上的源图已被破坏:https://bugs.chromium.org/p/chromium/issues/detail?id=611328#c21
一旦修复了源地图(修复程序当前处于金丝雀状态),那么我也确定修复了包含源地图的断点。
编辑:最后一个链接是一个过时的错误,上面链接的错误是最新的。
答案 1 :(得分:0)
据我所知,唯一的解决方案是不使用缩小代码的源图。无需编译即可编译代码,或使用chrome dev工具内置的漂亮打印功能。问题是缩小通常会将多行压缩为逗号表达式。开发工具不会将逗号表达式解释为单独的语句,这就是为什么您只能在代码块的开头放置断点。 Sourcemaps只是转换缩小代码的文本表示,但引擎通过缩小代码中的行执行它们。
修改强>
查看停用源地图是否有帮助,您可以在Chrome中找到该设置:
打开开发者控制台,按F1,然后找到以下复选框
答案 2 :(得分:0)
发现代码的问题
var alertVolumeUrl = function(ticker, term_id) {
var url = api.alertsVolume;
return _.isEmpty(term_id) ? url + ticker : url;
};
function alertsVolume(ticker, params) {
var url = alertVolumeUrl(ticker, params.term_id);
return $http.get(url, {params: params}).then(function(res){
return res.data.alerts;
});
我不得不重写第二个函数:
var alertVolumeUrl = function(ticker, term_id) {
var url = '/app/api/alerts/volume/';
return _.isEmpty(term_id) ? url + ticker : url;
};
var alertsVolume = function(ticker, params) {
return $http.get(alertVolumeUrl(ticker, params.term_id), { params: params }).then(function(res){
return res.data.alerts;
});
};
注意现在如何在第二个函数中使用alertVolumeUrl
。
由于某种原因导致我们的断点失败。