Skip to content

Commit e2f9e58

Browse files
authored
Merge pull request #2861 from marahmanjs/patch-1
update webpack url
2 parents 39da5f8 + 8d7a9dd commit e2f9e58

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

1-js/03-code-quality/06-polyfills/article.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Usually, a developer runs the transpiler on their own computer, and then deploys
4242
4343
Speaking of names, [Babel](https://babeljs.io) is one of the most prominent transpilers out there.
4444
45-
Modern project build systems, such as [webpack](http://webpack.github.io/), provide means to run transpiler automatically on every code change, so it's very easy to integrate into development process.
45+
Modern project build systems, such as [webpack](https://webpack.js.org/), provide means to run transpiler automatically on every code change, so it's very easy to integrate into development process.
4646
4747
## Polyfills
4848
@@ -82,7 +82,7 @@ In this chapter we'd like to motivate you to study modern and even "bleeding-edg
8282
8383
Just don't forget to use transpiler (if using modern syntax or operators) and polyfills (to add functions that may be missing). And they'll ensure that the code works.
8484
85-
For example, later when you're familiar with JavaScript, you can setup a code build system based on [webpack](http://webpack.github.io/) with [babel-loader](https://github.com/babel/babel-loader) plugin.
85+
For example, later when you're familiar with JavaScript, you can setup a code build system based on [webpack](https://webpack.js.org/) with [babel-loader](https://github.com/babel/babel-loader) plugin.
8686
8787
Good resources that show the current state of support for various features:
8888
- <https://kangax.github.io/compat-table/es6/> - for pure JavaScript.

0 commit comments

Comments
 (0)