inferred-types 0.43.1 → 0.43.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "inferred-types",
3
- "version": "0.43.1",
3
+ "version": "0.43.2",
4
4
  "description": "Functions which provide useful type inference on TS projects",
5
5
  "license": "MIT",
6
6
  "author": "Ken Snyder<ken@ken.net>",
@@ -28,7 +28,7 @@
28
28
  "build:esm": "tsc -b --verbose src/inferred-types",
29
29
  "build:cjs": "tsup dist/inferred-types/index.js --format cjs -d dist/inferred-types",
30
30
  "build:force": "rimraf dist && tsc -b -f --verbose src/inferred-types",
31
- "diagnostics": "npx tsc -b -f --extendedDiagnostics src/inferred-types",
31
+ "diagnostics": "tsc -b -f --extendedDiagnostics src/inferred-types",
32
32
  "clean": "rimraf dist/**/*",
33
33
  "lint": "eslint src",
34
34
  "trace": "npx tsc --noEmit --diagnostics && npx analyze-trace trace",
@@ -44,7 +44,7 @@
44
44
  "release": "run-s lint release:latest test:ci audit:fix release:bump",
45
45
  "release:latest": "pnpm install",
46
46
  "release:bump": "bumpp",
47
- "prepublishOnly": "npm run build:force",
47
+ "prepublishOnly": "npm run build",
48
48
  "watch": "run-p watch:*",
49
49
  "watch:types": "ts-type-tester tests tests/tsconfig.json --warn 6133 -w",
50
50
  "watch:lint": "esw (src|tests)/**/*.ts -w --clear",