Skip to content

Commit

Permalink
v6.15.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hzoo committed Sep 1, 2016
1 parent 13d76e9 commit b3dca4f
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion lerna.json
@@ -1,6 +1,6 @@
{
"lerna": "2.0.0-beta.23",
"version": "6.14.0",
"version": "6.15.0",
"changelog": {
"repo": "babel/babel",
"labels": {
Expand Down
@@ -1,13 +1,13 @@
{
"name": "babel-helper-builder-binary-assignment-operator-visitor",
"version": "6.8.0",
"version": "6.15.0",
"description": "",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-builder-binary-assignment-operator-visitor",
"license": "MIT",
"main": "lib/index.js",
"dependencies": {
"babel-helper-explode-assignable-expression": "^6.8.0",
"babel-runtime": "^6.0.0",
"babel-types": "^6.8.0"
"babel-types": "^6.15.0"
}
}
@@ -1,14 +1,14 @@
{
"name": "babel-plugin-transform-es2015-block-scoping",
"version": "6.14.0",
"version": "6.15.0",
"description": "Compile ES2015 block scoping (const and let) to ES5",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-block-scoping",
"license": "MIT",
"main": "lib/index.js",
"dependencies": {
"babel-traverse": "^6.14.0",
"babel-types": "^6.14.0",
"babel-template": "^6.14.0",
"babel-traverse": "^6.15.0",
"babel-types": "^6.15.0",
"babel-template": "^6.15.0",
"lodash": "^4.2.0",
"babel-runtime": "^6.9.0"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/babel-plugin-transform-runtime/package.json
@@ -1,6 +1,6 @@
{
"name": "babel-plugin-transform-runtime",
"version": "6.12.0",
"version": "6.15.0",
"description": "Externalise references to helpers and builtins, automatically polyfilling your code without polluting globals",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-runtime",
"license": "MIT",
Expand Down
6 changes: 3 additions & 3 deletions packages/babel-template/package.json
@@ -1,6 +1,6 @@
{
"name": "babel-template",
"version": "6.14.0",
"version": "6.15.0",
"description": "Generate an AST from a string template.",
"author": "Sebastian McKenzie <sebmck@gmail.com>",
"homepage": "https://babeljs.io/",
Expand All @@ -9,8 +9,8 @@
"main": "lib/index.js",
"dependencies": {
"babylon": "^6.9.0",
"babel-traverse": "^6.14.0",
"babel-types": "^6.14.0",
"babel-traverse": "^6.15.0",
"babel-types": "^6.15.0",
"babel-runtime": "^6.9.0",
"lodash": "^4.2.0"
}
Expand Down
4 changes: 2 additions & 2 deletions packages/babel-traverse/package.json
@@ -1,6 +1,6 @@
{
"name": "babel-traverse",
"version": "6.14.0",
"version": "6.15.0",
"description": "",
"author": "Sebastian McKenzie <sebmck@gmail.com>",
"homepage": "https://babeljs.io/",
Expand All @@ -11,7 +11,7 @@
"babel-code-frame": "^6.8.0",
"babel-messages": "^6.8.0",
"babel-runtime": "^6.9.0",
"babel-types": "^6.14.0",
"babel-types": "^6.15.0",
"babylon": "^6.9.0",
"debug": "^2.2.0",
"globals": "^8.3.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/babel-types/package.json
@@ -1,6 +1,6 @@
{
"name": "babel-types",
"version": "6.14.0",
"version": "6.15.0",
"description": "",
"author": "Sebastian McKenzie <sebmck@gmail.com>",
"homepage": "https://babeljs.io/",
Expand Down

4 comments on commit b3dca4f

@apearce
Copy link

@apearce apearce commented on b3dca4f Sep 4, 2016

Choose a reason for hiding this comment

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

This commit did not get published to npm (it still shows 6.14.0 being the latest) and a lot of other packages are depending on this version which is breaking the react native app I am working on.

@danez
Copy link
Member

@danez danez commented on b3dca4f Sep 4, 2016

Choose a reason for hiding this comment

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

They are all published prefectly fine as far as I can check:

❯ npm dist-tag ls babel-types
latest: 6.15.0

Notice that babel uses a global version for all packages, but not all packages get released all the time if they haven't changed since the last version. If you look at the changelog you can see which packages were bumped to the new version by looking at the titles within a version: https://github.com/babel/babel/blob/master/CHANGELOG.md

If your problem persists feel free to join our slack channel and ask for help. (see readme for more info)

@apearce
Copy link

@apearce apearce commented on b3dca4f Sep 4, 2016

Choose a reason for hiding this comment

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

Thanks for the reply. I am referring to babel-traverse, not babel-types, however running npm dist-tag ls babel-traverse also shows latest: 6.15.0. When I go to https://www.npmjs.com/package/babel-traverse it shows 6.14.0 is the latest of 47 releases.

Is this an npm issue? I will try to get on the slack channel later if the problem persists for me.

@loganfsmyth
Copy link
Member

Choose a reason for hiding this comment

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

The npm website is aggresively cached, the CLI is the best way to get up-to-date registry info.

Please sign in to comment.