Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🏗✨ Upgrade to Babel 7 #18574

Merged
merged 15 commits into from
Oct 10, 2018
Prev Previous commit
Next Next commit
Restore sourceMapsAbsolute
  • Loading branch information
rsimha committed Oct 10, 2018
commit ab1de063f095172803e3116556550cafec05b752
1 change: 0 additions & 1 deletion babel.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ module.exports = function(api) {
],
'compact': false,
'sourceType': 'module',
'sourceMapsAbsolute': true,
'ignore': [
'./third_party/closure-library/sha384-generated.js',
],
Expand Down
4 changes: 3 additions & 1 deletion build-system/tasks/karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,9 @@ module.exports = {
watch: true,
debug: true,
basedir: __dirname + '/../../',
transform: ['babelify'],
transform: [
['babelify', {'sourceMapsAbsolute': true}],
],
// Prevent "cannot find module" errors on Travis. See #14166.
bundleDelay: process.env.TRAVIS ? 5000 : 1200,
},
Expand Down