Skip to content
This repository has been archived by the owner on Aug 18, 2021. It is now read-only.

Commit

Permalink
update babel packages (#565)
Browse files Browse the repository at this point in the history
* update babel packages 

There is some critical bug fixes in version babylon#7.0.0-beta.33 regard `async` - `await` syntax which is needed pretty immediately :)

* remove test 42 (test for import type *)

`import type *` is invalid, since the namespace can't be a type
  • Loading branch information
jony89 authored and hzoo committed Jan 8, 2018
1 parent 36bf8b4 commit 1dedd1b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 15 deletions.
8 changes: 4 additions & 4 deletions package.json
Expand Up @@ -11,10 +11,10 @@
"url": "https://github.com/babel/babel-eslint.git"
},
"dependencies": {
"@babel/code-frame": "7.0.0-beta.31",
"@babel/traverse": "7.0.0-beta.31",
"@babel/types": "7.0.0-beta.31",
"babylon": "7.0.0-beta.31",
"@babel/code-frame": "7.0.0-beta.36",
"@babel/traverse": "7.0.0-beta.36",
"@babel/types": "7.0.0-beta.36",
"babylon": "7.0.0-beta.36",
"eslint-scope": "~3.7.1",
"eslint-visitor-keys": "^1.0.0"
},
Expand Down
11 changes: 0 additions & 11 deletions test/non-regression.js
Expand Up @@ -1079,17 +1079,6 @@ describe("verify", () => {
);
});

it("42", () => {
verifyAndAssertMessages(
unpad(`
import type * as namespace from 'bar';
namespace;
`),
{ "no-unused-vars": 1, "no-undef": 1 },
[]
);
});

it("43", () => {
verifyAndAssertMessages(
unpad(`
Expand Down

0 comments on commit 1dedd1b

Please sign in to comment.