You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Already bundled version of `core-js`[on CDN](https://unpkg.com/core-js-bundle@3.18.3) ([minified version](https://unpkg.com/core-js-bundle@3.18.3/minified.js)).
150
+
Already bundled version of `core-js`[on CDN](https://unpkg.com/core-js-bundle@3.19.0) ([minified version](https://unpkg.com/core-js-bundle@3.19.0/minified.js)).
151
151
152
152
### `postinstall` message[⬆](#index)
153
153
The `core-js` project needs your help, so the package shows a message about it after installation. If it causes problems for you, you can disable it:
[`@babel/preset-env`](https://github.com/babel/babel/tree/master/packages/babel-preset-env) has `useBuiltIns` option, which optimizes working with global version of `core-js`. With `useBuiltIns` option, you should also set `corejs` option to used version of `core-js`, like `corejs: '3.18'`.
240
+
[`@babel/preset-env`](https://github.com/babel/babel/tree/master/packages/babel-preset-env) has `useBuiltIns` option, which optimizes working with global version of `core-js`. With `useBuiltIns` option, you should also set `corejs` option to used version of `core-js`, like `corejs: '3.19'`.
241
241
242
-
> **Warning!** Recommended to specify used minor `core-js` version, like `corejs: '3.18'`, instead of `corejs: 3`, since with `corejs: 3` will not be injected modules which were added in minor `core-js` releases.
242
+
> **Warning!** Recommended to specify used minor `core-js` version, like `corejs: '3.19'`, instead of `corejs: 3`, since with `corejs: 3` will not be injected modules which were added in minor `core-js` releases.
243
243
244
244
-`useBuiltIns: 'entry'` replaces imports of `core-js` to import only required for a target environment modules. So, for example,
By default, `@babel/preset-env` with `useBuiltIns: 'usage'` option only polyfills stable features, but you can enable polyfilling of proposals by `proposals` option, as `corejs: { version: '3.18', proposals: true }`.
297
+
By default, `@babel/preset-env` with `useBuiltIns: 'usage'` option only polyfills stable features, but you can enable polyfilling of proposals by `proposals` option, as `corejs: { version: '3.19', proposals: true }`.
0 commit comments