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

Use global transform for babelify #22927

Merged
merged 6 commits into from Jun 20, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 9 additions & 1 deletion build-system/tasks/karma.conf.js
Expand Up @@ -15,6 +15,7 @@
*/
'use strict';

const {devDependencies} = require('./helpers');
const {gitCommitterEmail} = require('../git');
const {isTravisBuild, travisJobNumber} = require('../travis');

Expand Down Expand Up @@ -68,7 +69,14 @@ module.exports = {
debug: true,
basedir: __dirname + '/../../',
transform: [
['babelify', {'global': isTravisBuild(), 'sourceMapsAbsolute': true}],
[
'babelify',
{
'global': isTravisBuild(),
Copy link
Contributor

@rsimha rsimha Jun 20, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@choumx I just ran some unit tests locally, and I think this is now necessary for local runs too. Changing this line to true, plus wiping the Travis cache might fix things. (I think!)

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not sure, I actually didn't change this line.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah, what I meant was now that you're relying on this to transform node_modules, it's necessary to enable global: true for local testing and on Travis.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think https://travis-ci.org/ampproject/amphtml/jobs/548325896 is failing because of this too.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The link you posted confirms my suspicion. The failing runs are all coverage runs, which uses a different babelify config. I've sent out a fix in #22951, which I believe should handle this.

'ignore': devDependencies(),
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this is a performance optimization.

'sourceMapsAbsolute': true,
},
],
],
// Prevent "cannot find module" errors on Travis. See #14166.
bundleDelay: isTravisBuild() ? 5000 : 1200,
Expand Down