Skip to content

Commit 573c76b

Browse files
🤖 docs: Reference scoped babel packages.
Replace all references to unscoped babel-* packages by references to scoped @babel/* packages. These changes were automatically generated by a transform whose code can be found at: - https://github.com/make-github-pseudonymous-again/rejuvenate/blob/a44c42967442d65fd14272682fb84a6f32feb841/src/transforms/docs:replace-unscoped-babel-packages-with-scoped-babel-packages.js Please contact the author of the transform if you believe there was an error.
1 parent 70b9f36 commit 573c76b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

doc/manual/usage.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# Usage
22

33
The code needs a ES2015+ polyfill to work, for example
4-
[babel-polyfill](https://babeljs.io/docs/usage/polyfill).
4+
[@babel/polyfill](https://babeljs.io/docs/usage/polyfill).
55
```js
6-
require( 'babel-polyfill' ) ;
6+
require( '@babel/polyfill' ) ;
77
// or
8-
import 'babel-polyfill' ;
8+
import '@babel/polyfill' ;
99
```
1010

1111
Then

0 commit comments

Comments
 (0)