@typescript-eslint/experimental-utils 1.12.1-alpha.8 → 1.13.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +18 -0
  2. package/package.json +6 -4
package/CHANGELOG.md CHANGED
@@ -3,6 +3,24 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [1.13.0](https://github.com/typescript-eslint/typescript-eslint/compare/v1.12.0...v1.13.0) (2019-07-21)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * Correct `@types/json-schema` dependency ([#675](https://github.com/typescript-eslint/typescript-eslint/issues/675)) ([a5398ce](https://github.com/typescript-eslint/typescript-eslint/commit/a5398ce))
12
+ * **utils:** move `typescript` from peer dep to dev dep ([#712](https://github.com/typescript-eslint/typescript-eslint/issues/712)) ([f949355](https://github.com/typescript-eslint/typescript-eslint/commit/f949355))
13
+ * **utils:** RuleTester should not require a parser ([#713](https://github.com/typescript-eslint/typescript-eslint/issues/713)) ([158a417](https://github.com/typescript-eslint/typescript-eslint/commit/158a417))
14
+
15
+
16
+ ### Features
17
+
18
+ * **eslint-plugin:** add new rule no-misused-promises ([#612](https://github.com/typescript-eslint/typescript-eslint/issues/612)) ([28a131d](https://github.com/typescript-eslint/typescript-eslint/commit/28a131d))
19
+
20
+
21
+
22
+
23
+
6
24
  # [1.12.0](https://github.com/typescript-eslint/typescript-eslint/compare/v1.11.0...v1.12.0) (2019-07-12)
7
25
 
8
26
  **Note:** Version bump only for package @typescript-eslint/experimental-utils
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@typescript-eslint/experimental-utils",
3
- "version": "1.12.1-alpha.8+c1e5c37",
3
+ "version": "1.13.0",
4
4
  "description": "(Experimental) Utilities for working with TypeScript + ESLint together",
5
5
  "keywords": [
6
6
  "eslint",
@@ -37,12 +37,14 @@
37
37
  },
38
38
  "dependencies": {
39
39
  "@types/json-schema": "^7.0.3",
40
- "@typescript-eslint/typescript-estree": "1.12.1-alpha.8+c1e5c37",
40
+ "@typescript-eslint/typescript-estree": "1.13.0",
41
41
  "eslint-scope": "^4.0.0"
42
42
  },
43
43
  "peerDependencies": {
44
- "eslint": "*",
44
+ "eslint": "*"
45
+ },
46
+ "devDependencies": {
45
47
  "typescript": "*"
46
48
  },
47
- "gitHead": "c1e5c37acda2bac98178bf9dc8628b981b5b8911"
49
+ "gitHead": "c367b34abd8c58eddd2c15685ed8c17b983f0da1"
48
50
  }