@definitelytyped/dtslint 0.2.29 → 0.2.30

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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # @definitelytyped/dtslint
2
2
 
3
+ ## 0.2.30
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [9aaf5fb]
8
+ - @definitelytyped/typescript-packages@0.1.8
9
+ - @definitelytyped/typescript-versions@0.1.8
10
+ - @definitelytyped/header-parser@0.2.18
11
+
3
12
  ## 0.2.29
4
13
 
5
14
  ### Patch Changes
package/README.md CHANGED
@@ -162,10 +162,10 @@ Normally packages will be tested according to [DefinitelyType's support window](
162
162
  To restrict testing to new versions only, specify it in package.json:
163
163
 
164
164
  ```ts
165
- "minimumTypeScriptVersion: 5.0"
165
+ "minimumTypeScriptVersion: 5.6"
166
166
  ```
167
167
 
168
- This tests only 5.0 and above, although people can still depend on the package with lower versions of Typescript if they want.
168
+ This tests only 5.6 and above, although people can still depend on the package with lower versions of Typescript if they want.
169
169
 
170
170
  ## Run tests
171
171
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@definitelytyped/dtslint",
3
- "version": "0.2.29",
3
+ "version": "0.2.30",
4
4
  "description": "Runs tests on TypeScript definition files",
5
5
  "main": "./dist/index.js",
6
6
  "bin": "./dist/index.js",
@@ -29,10 +29,10 @@
29
29
  "eslint-plugin-import": "^2.31.0",
30
30
  "semver": "^7.6.3",
31
31
  "strip-json-comments": "^3.1.1",
32
- "@definitelytyped/header-parser": "0.2.17",
33
- "@definitelytyped/typescript-packages": "0.1.7",
32
+ "@definitelytyped/header-parser": "0.2.18",
33
+ "@definitelytyped/typescript-packages": "0.1.8",
34
34
  "@definitelytyped/utils": "0.1.8",
35
- "@definitelytyped/typescript-versions": "0.1.7"
35
+ "@definitelytyped/typescript-versions": "0.1.8"
36
36
  },
37
37
  "peerDependencies": {
38
38
  "typescript": ">= 3.0.0-dev || >= 3.1.0-dev || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.7.0-dev || >= 3.8.0-dev || >= 3.9.0-dev || >= 4.0.0-dev || >=5.0.0-dev"