Bug 1531350 - Update debugger frontend Release 128. r=dwalsh

This commit is contained in:
Jason Laster 2019-03-01 19:33:12 -05:00
parent 5b892e6148
commit 0dba6abe5a
3 changed files with 10 additions and 7 deletions

View File

@ -1,9 +1,9 @@
This is the debugger.html project output. This is the debugger.html project output.
See https://github.com/devtools-html/debugger.html See https://github.com/devtools-html/debugger.html
Version 127 Version 128
Comparison: https://github.com/devtools-html/debugger.html/compare/release-126...release-127 Comparison: https://github.com/devtools-html/debugger.html/compare/release-127...release-128
Packages: Packages:
- babel-plugin-transform-es2015-modules-commonjs @6.26.2 - babel-plugin-transform-es2015-modules-commonjs @6.26.2

View File

@ -118,14 +118,17 @@ if (!global.Promise.prototype.finally) {
global.Promise.prototype.finally = function finallyPolyfill(callback) { global.Promise.prototype.finally = function finallyPolyfill(callback) {
var constructor = this.constructor; var constructor = this.constructor;
return this.then(function(value) { return this.then(
function(value) {
return constructor.resolve(callback()).then(function() { return constructor.resolve(callback()).then(function() {
return value; return value;
}); });
}, function(reason) { },
function(reason) {
return constructor.resolve(callback()).then(function() { return constructor.resolve(callback()).then(function() {
throw reason; throw reason;
}); });
}); }
);
}; };
} }

View File

@ -63,7 +63,7 @@ if (isProduction) {
const envConfig = getConfig(); const envConfig = getConfig();
const extra = { const extra = {
babelIncludes: ["react-aria-components"], babelIncludes: ["react-aria-components"]
}; };
webpackConfig.plugins.push(new ObjectRestSpreadPlugin()); webpackConfig.plugins.push(new ObjectRestSpreadPlugin());
@ -74,7 +74,7 @@ if (!isProduction) {
} else { } else {
webpackConfig.output.libraryTarget = "umd"; webpackConfig.output.libraryTarget = "umd";
extra.excludeMap = mozillaCentralMappings; extra.excludeMap = mozillaCentralMappings;
extra.recordsPath = "bin/module-manifest.json" extra.recordsPath = "bin/module-manifest.json";
} }
module.exports = toolbox.toolboxConfig(webpackConfig, envConfig, extra); module.exports = toolbox.toolboxConfig(webpackConfig, envConfig, extra);