typescript-eslint-parser
Advanced tools
Comparing version 9.0.1 to 10.0.0
@@ -0,1 +1,7 @@ | ||
v10.0.0 - December 11, 2017 | ||
* 59a37f4 Breaking: Updates to AST node types of some TSNodes (fixes #386) (#388) (James Henry) | ||
* 627355e Chore: Introduce integration tests (#411) (James Henry) | ||
* b4d22e7 Chore: No package-lock like other ESLint repos (#409) (James Henry) | ||
v9.0.1 - November 29, 2017 | ||
@@ -2,0 +8,0 @@ |
@@ -100,3 +100,2 @@ /** | ||
TryStatement: "TryStatement", | ||
/** | ||
@@ -144,3 +143,7 @@ * TS-prefixed nodes | ||
TSSymbolKeyword: "TSSymbolKeyword", | ||
TSTypeAnnotation: "TSTypeAnnotation", | ||
TSTypeLiteral: "TSTypeLiteral", | ||
TSTypeParameter: "TSTypeParameter", | ||
TSTypeParameterDeclaration: "TSTypeParameterDeclaration", | ||
TSTypeParameterInstantiation: "TSTypeParameterInstantiation", | ||
TSTypePredicate: "TSTypePredicate", | ||
@@ -151,7 +154,2 @@ TSTypeReference: "TSTypeReference", | ||
TSVoidKeyword: "TSVoidKeyword", | ||
TypeAnnotation: "TypeAnnotation", | ||
TypeParameter: "TypeParameter", | ||
TypeParameterDeclaration: "TypeParameterDeclaration", | ||
TypeParameterInstantiation: "TypeParameterInstantiation", | ||
UnaryExpression: "UnaryExpression", | ||
@@ -158,0 +156,0 @@ UpdateExpression: "UpdateExpression", |
@@ -7,3 +7,3 @@ { | ||
"main": "parser.js", | ||
"version": "9.0.1", | ||
"version": "10.0.0", | ||
"files": [ | ||
@@ -23,4 +23,5 @@ "lib", | ||
"babel-code-frame": "6.26.0", | ||
"babylon": "7.0.0-beta.24", | ||
"eslint": "4.10.0", | ||
"babylon": "7.0.0-beta.34", | ||
"dedent": "0.7.0", | ||
"eslint": "4.13.0", | ||
"eslint-config-eslint": "4.0.0", | ||
@@ -47,5 +48,6 @@ "eslint-plugin-node": "5.2.1", | ||
"scripts": { | ||
"test": "node Makefile.js test && npm run ast-alignment-tests", | ||
"test": "node Makefile.js test && npm run integration-tests && npm run ast-alignment-tests", | ||
"jest": "jest", | ||
"ast-alignment-tests": "jest --config={} ./tests/ast-alignment/spec.js", | ||
"ast-alignment-tests": "jest --config=./tests/ast-alignment/jest.config.js", | ||
"integration-tests": "jest --config=./tests/integration/jest.config.js", | ||
"lint": "node Makefile.js lint", | ||
@@ -52,0 +54,0 @@ "release": "eslint-release", |
@@ -61,5 +61,5 @@ # TypeScript ESLint Parser (Experimental) | ||
- ESLint config or rules and plugins currently enabled | ||
As well include a small code sample that can be used to reproduce the issue. | ||
As well include a small code sample that can be used to reproduce the issue. | ||
## Contributing | ||
@@ -73,2 +73,4 @@ | ||
* `npm run lint` - run all linting | ||
* `npm run ast-alignment-tests` - run only Babylon AST alignment tests | ||
* `npm run integration-tests` - run only integration tests | ||
@@ -78,2 +80,1 @@ ## License | ||
TypeScript ESLint Parser is licensed under a permissive BSD 2-clause license. | ||
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
146584
78
14