Skip to content

Commit

Permalink
3.0.0-beta.10
Browse files Browse the repository at this point in the history
  • Loading branch information
zloirock committed Jan 22, 2019
1 parent 775fa15 commit 18fb323
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,18 +89,18 @@ Promise.resolve(32).then(x => console.log(x)); // => 32
Installation:
```
// global version
npm i [email protected].9
npm i [email protected].10
// version without global namespace pollution
npm i [email protected].9
npm i [email protected].10
// bundled global version
npm i [email protected].9
npm i [email protected].10
```

```js
// Include all polyfills
require('core-js');
```
If you need already bundled version of `core-js`, use `core-js-bundle` `npm` package or a [version of this package from CDN](https://unpkg.com/[email protected].9) ([minified version](https://unpkg.com/[email protected].9/minified.js)).
If you need already bundled version of `core-js`, use `core-js-bundle` `npm` package or a [version of this package from CDN](https://unpkg.com/[email protected].10) ([minified version](https://unpkg.com/[email protected].10/minified.js)).

Warning: if you use `core-js` with the extension of native objects, load all `core-js` modules at the top of entry point of your application, otherwise, you can have conflicts.

Expand Down
6 changes: 3 additions & 3 deletions packages/core-js-builder/package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"name": "core-js-builder",
"description": "core-js builder",
"version": "3.0.0-beta.9",
"version": "3.0.0-beta.10",
"repository": {
"type": "git",
"url": "https://github.com/zloirock/core-js.git"
},
"main": "index.js",
"dependencies": {
"core-js": "3.0.0-beta.9",
"core-js-compat": "3.0.0-beta.9",
"core-js": "3.0.0-beta.10",
"core-js-compat": "3.0.0-beta.10",
"mkdirp": "^0.5.1",
"temp": "^0.9.0",
"util.promisify": "^1.0.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/core-js-bundle/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "core-js-bundle",
"description": "Standard library",
"version": "3.0.0-beta.9",
"version": "3.0.0-beta.10",
"repository": {
"type": "git",
"url": "https://github.com/zloirock/core-js.git"
Expand Down
2 changes: 1 addition & 1 deletion packages/core-js-compat/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "core-js-compat",
"description": "core-js compat",
"version": "3.0.0-beta.9",
"version": "3.0.0-beta.10",
"repository": {
"type": "git",
"url": "https://github.com/zloirock/core-js.git"
Expand Down
2 changes: 1 addition & 1 deletion packages/core-js-pure/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "core-js-pure",
"description": "Standard library",
"version": "3.0.0-beta.9",
"version": "3.0.0-beta.10",
"repository": {
"type": "git",
"url": "https://github.com/zloirock/core-js.git"
Expand Down
2 changes: 1 addition & 1 deletion packages/core-js/internals/shared.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ var store = global[SHARED] || setGlobal(SHARED, {});
(module.exports = function (key, value) {
return store[key] || (store[key] = value !== undefined ? value : {});
})('versions', []).push({
version: '3.0.0-beta.9',
version: '3.0.0-beta.10',
mode: require('../internals/is-pure') ? 'pure' : 'global',
copyright: '© 2019 Denis Pushkarev (zloirock.ru)'
});
2 changes: 1 addition & 1 deletion packages/core-js/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "core-js",
"description": "Standard library",
"version": "3.0.0-beta.9",
"version": "3.0.0-beta.10",
"repository": {
"type": "git",
"url": "https://github.com/zloirock/core-js.git"
Expand Down

0 comments on commit 18fb323

Please sign in to comment.