@llbbl/uncov 0.1.1 → 0.1.4

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/dist/cli.js +6 -2
  2. package/package.json +6 -2
package/dist/cli.js CHANGED
@@ -6,7 +6,7 @@ import { parseArgs } from "util";
6
6
  // package.json
7
7
  var package_default = {
8
8
  name: "@llbbl/uncov",
9
- version: "0.1.1",
9
+ version: "0.1.4",
10
10
  description: "Report files with low test coverage from Vitest/Istanbul output",
11
11
  type: "module",
12
12
  main: "./dist/cli.js",
@@ -30,7 +30,11 @@ var package_default = {
30
30
  "@types/bun": "^1.2.4"
31
31
  },
32
32
  keywords: ["coverage", "vitest", "testing", "cli"],
33
- license: "MIT"
33
+ license: "MIT",
34
+ repository: {
35
+ type: "git",
36
+ url: "git+https://github.com/llbbl/uncov.git"
37
+ }
34
38
  };
35
39
 
36
40
  // src/lib/constants.ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@llbbl/uncov",
3
- "version": "0.1.1",
3
+ "version": "0.1.4",
4
4
  "description": "Report files with low test coverage from Vitest/Istanbul output",
5
5
  "type": "module",
6
6
  "main": "./dist/cli.js",
@@ -24,5 +24,9 @@
24
24
  "@types/bun": "^1.2.4"
25
25
  },
26
26
  "keywords": ["coverage", "vitest", "testing", "cli"],
27
- "license": "MIT"
27
+ "license": "MIT",
28
+ "repository": {
29
+ "type": "git",
30
+ "url": "git+https://github.com/llbbl/uncov.git"
31
+ }
28
32
  }