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

Make fetch happen #135

Merged
merged 4 commits into from Jun 13, 2022
Merged

Conversation

chrisuehlinger-techslice
Copy link
Contributor

Resolves #117. I also ran into some race conditions occasionally when running npm run init, and it looks like there were some fs.rename() calls whose promises weren't being awaited, so I added awaits for those. I checked that in as a separate commit in case you'd prefer I split this into two PRs.

@chrisuehlinger-techslice
Copy link
Contributor Author

@jathak and @nex3 (This is my first time submitting an OSS PR in a while, not sure if I'm supposed to tag maintainers to request a review, just wanted to make sure y'all are aware of this)

Copy link
Member

@jathak jathak left a comment

Choose a reason for hiding this comment

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

Thanks for this!

tool/utils.ts Outdated
@@ -2,9 +2,9 @@
// MIT-style license that can be found in the LICENSE file or at
// https://opensource.org/licenses/MIT.

const fetch = require('make-fetch-happen').defaults();
Copy link
Member

Choose a reason for hiding this comment

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

Please use an import statement here and then assign fetch below the imports.

e.g. something like:

import {defaults as initMakeFetchHappen} 'make-fetch-happen';
// other imports
const fetch = initMakeFetchHappen();

@nex3 nex3 merged commit 11ecf3c into sass:main Jun 13, 2022
nex3 added a commit that referenced this pull request Nov 2, 2022
This reverts commit 11ecf3c.

Works around DefinitelyTyped/DefinitelyTyped#59314.

Now that we aren't downloading anything on end users' systems, we
don't have a strong need to respect npm's proxy options.
nex3 added a commit that referenced this pull request Nov 2, 2022
This reverts commit 11ecf3c.

Works around DefinitelyTyped/DefinitelyTyped#59314.

Now that we aren't downloading anything on end users' systems, we
don't have a strong need to respect npm's proxy options.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Use make-fetch-happen instead of node-fetch when downloading compiler
4 participants