@definitelytyped/dtslint 0.0.202 → 0.0.203

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,15 @@
1
1
  # @definitelytyped/dtslint
2
2
 
3
+ ## 0.0.203
4
+
5
+ ### Patch Changes
6
+
7
+ - b980f717: Rename branch to main
8
+ - Updated dependencies [b980f717]
9
+ - @definitelytyped/typescript-versions@0.0.183
10
+ - @definitelytyped/header-parser@0.0.192
11
+ - @definitelytyped/utils@0.0.190
12
+
3
13
  ## 0.0.202
4
14
 
5
15
  ### Patch Changes
package/README.md CHANGED
@@ -110,7 +110,7 @@ If you are using the default rules, .eslintrc.json is optional; tslint.json shou
110
110
  { "extends": "@definitelytyped/dtslint/dt.json" }
111
111
  ```
112
112
 
113
- If present, this will override `dtslint`'s [default](https://github.com/microsoft/DefinitelyTyped-tools/blob/master/packages/dtslint/dtslint.json) settings.
113
+ If present, this will override `dtslint`'s [default](https://github.com/microsoft/DefinitelyTyped-tools/blob/main/packages/dtslint/dtslint.json) settings.
114
114
  You can specify new lint [rules](https://palantir.github.io/tslint/rules/), or disable some. An example:
115
115
 
116
116
  ```json5
@@ -211,7 +211,7 @@ I'm getting an error about a missing typescript install.
211
211
  Error: Cannot find module '/node_modules/dtslint/typescript-installs/3.1/node_modules/typescript`
212
212
  ```
213
213
  Your dependencies may be out of date.
214
- [@definitelytyped/typescript-versions](https://github.com/microsoft/DefinitelyTyped-tools/tree/master/packages/typescript-versions) is the package that contains the list of TypeScript versions to install.
214
+ [@definitelytyped/typescript-versions](https://github.com/microsoft/DefinitelyTyped-tools/tree/main/packages/typescript-versions) is the package that contains the list of TypeScript versions to install.
215
215
 
216
216
  Alternatively this error can be caused by concurrent dtslint invocations trampling each other's TypeScript installations, especially in the context of continuous integration, if dtslint is installed from scratch in each run.
217
217
  If for example you use [Lerna](https://github.com/lerna/lerna/tree/main/commands/run#readme), try running dtslint with [`lerna --concurrency 1 run ...`](https://github.com/lerna/lerna/tree/main/core/global-options#--concurrency).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@definitelytyped/dtslint",
3
- "version": "0.0.202",
3
+ "version": "0.0.203",
4
4
  "description": "Runs tests on TypeScript definition files",
5
5
  "main": "./dist/index.js",
6
6
  "bin": "./dist/index.js",
@@ -29,9 +29,9 @@
29
29
  "strip-json-comments": "^3.1.1",
30
30
  "tslint": "5.14.0",
31
31
  "yargs": "^17.7.2",
32
- "@definitelytyped/header-parser": "0.0.191",
33
- "@definitelytyped/typescript-versions": "0.0.182",
34
- "@definitelytyped/utils": "0.0.189"
32
+ "@definitelytyped/header-parser": "0.0.192",
33
+ "@definitelytyped/typescript-versions": "0.0.183",
34
+ "@definitelytyped/utils": "0.0.190"
35
35
  },
36
36
  "peerDependencies": {
37
37
  "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"