update babel packages (babel/babel-eslint#565)

* 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
This commit is contained in:
jony89 2018-01-09 00:40:11 +02:00
parent d0d84aca9b
commit 660180b932
2 changed files with 4 additions and 15 deletions

View File

@ -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"
},

View File

@ -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(`