@definitelytyped/dtslint-runner 0.0.163-next.1 → 0.0.164-next.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/README.md +13 -0
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -11,5 +11,18 @@ $ node node_modules/@definitelytyped/dtslint-runner/dist/index.js --path ~/Defin
11
11
  $ node node_modules/@definitelytyped/dtslint-runner/dist/index.js --path .
12
12
  # run all (from DefinitelyTyped root):
13
13
  $ node node_modules/@definitelytyped/dtslint-runner/dist/index.js --path . --selection all
14
+
15
+ # after running once, it's faster to add --noInstall
16
+ $ node node_modules/@definitelytyped/dtslint-runner/dist/index.js --path . --selection all --noInstall
17
+ # you might only want to run a fraction of packages for testing
18
+ $ node node_modules/@definitelytyped/dtslint-runner/dist/index.js --path . --selection all --noInstall --shardCount 8 --shardId 1
19
+ # or test only with the $ExpectType rule, which type checks
20
+ $ node node_modules/@definitelytyped/dtslint-runner/dist/index.js --path . --selection all --noInstall --expectOnly
21
+ # or test only with the $ExpectType rule, which type checks
22
+ $ node node_modules/@definitelytyped/dtslint-runner/dist/index.js --path . --selection all --noInstall --expectOnly
23
+ # and you might just want to test on the latest Typescript
24
+ $ node node_modules/@definitelytyped/dtslint-runner/dist/index.js --path . --selection all --noInstall --expectOnly --onlyTestTsNext
25
+ # or a local build of Typescript
26
+ $ node node_modules/@definitelytyped/dtslint-runner/dist/index.js --path . --selection all --noInstall --expectOnly --localTypeScriptPath ../ts/built/local
14
27
  ```
15
28
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@definitelytyped/dtslint-runner",
3
- "version": "0.0.163-next.1",
3
+ "version": "0.0.164-next.0",
4
4
  "description": "Run dtslint on DefinitelyTyped packages",
5
5
  "homepage": "https://github.com/microsoft/DefinitelyTyped-tools/tree/master/packages/dtslint-runner#readme",
6
6
  "license": "MIT",
@@ -23,9 +23,9 @@
23
23
  "url": "https://github.com/microsoft/DefinitelyTyped-tools/issues"
24
24
  },
25
25
  "dependencies": {
26
- "@definitelytyped/definitions-parser": "^0.0.163-next.1",
27
- "@definitelytyped/dtslint": "^0.0.163-next.1",
28
- "@definitelytyped/utils": "^0.0.163-next.1",
26
+ "@definitelytyped/definitions-parser": "^0.0.163",
27
+ "@definitelytyped/dtslint": "^0.0.163",
28
+ "@definitelytyped/utils": "^0.0.163",
29
29
  "@octokit/rest": "^16.43.2",
30
30
  "fs-extra": "^9.0.0",
31
31
  "glob": "^7.2.3",
@@ -41,5 +41,5 @@
41
41
  "@types/stats-lite": "^2.2.0",
42
42
  "source-map-support": "^0.5.21"
43
43
  },
44
- "gitHead": "139264509a2356d37e47c9049bd36ac9ebfb7104"
44
+ "gitHead": "e365df510306790bd5317402ab124c8935358a51"
45
45
  }