@plugjs/cov8 0.6.5 → 0.6.7

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/README.md CHANGED
@@ -1,7 +1,8 @@
1
1
  V8 Coverage Plugin for the PlugJS Build System
2
2
  ==============================================
3
3
 
4
- Prototype build system from [Juit GmbH](https://www.juit.com/)
4
+ This plugin analyzes the output of NodeJS V8 Coverage files and produces a
5
+ report (on console and as HTML) outlining the coverage of source files.
5
6
 
6
7
  * [Copyright Notice](https://github.com/plugjs/plug/blob/main/NOTICE.md)
7
8
  * [License](https://github.com/plugjs/plug/blob/main/LICENSE.md)
package/dist/cli.mjs CHANGED
@@ -8,7 +8,7 @@ var { $blu, $und, $gry, $wht, $p } = logging;
8
8
  var $gnd = (s) => $gry($und(s));
9
9
  var $bnd = (s) => $blu($und(s));
10
10
  var $wnd = (s) => $wht($und(s));
11
- var version = true ? "0.6.5" : "0.0.0-dev";
11
+ var version = true ? "0.6.7" : "0.0.0-dev";
12
12
  function help() {
13
13
  console.log(`${$blu($und("Usage:"))}
14
14
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plugjs/cov8",
3
- "version": "0.6.5",
3
+ "version": "0.6.7",
4
4
  "type": "module",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.mjs",
@@ -35,16 +35,37 @@
35
35
  "dependencies": {
36
36
  "@babel/parser": "^7.24.8",
37
37
  "@babel/types": "^7.24.9",
38
- "@plugjs/cov8-html": "^0.1.74",
39
- "@plugjs/tsrun": "^0.5.27",
38
+ "@plugjs/cov8-html": "^0.1.76",
39
+ "@plugjs/tsrun": "^0.5.32",
40
40
  "source-map": "^0.7.4"
41
41
  },
42
42
  "peerDependencies": {
43
- "@plugjs/plug": "0.6.5"
43
+ "@plugjs/plug": "0.6.7"
44
44
  },
45
45
  "files": [
46
46
  "*.md",
47
47
  "dist/",
48
48
  "src/"
49
- ]
49
+ ],
50
+ "repository": {
51
+ "type": "git",
52
+ "url": "git+ssh://git@github.com/plugjs/plug.git"
53
+ },
54
+ "keywords": [
55
+ "build",
56
+ "compile",
57
+ "coverage",
58
+ "ecmascript",
59
+ "istanbul",
60
+ "javascript",
61
+ "node",
62
+ "nyc",
63
+ "plugjs",
64
+ "transpile",
65
+ "typescript"
66
+ ],
67
+ "bugs": {
68
+ "url": "https://github.com/plugjs/plug/issues"
69
+ },
70
+ "homepage": "https://github.com/plugjs/plug/blob/main/workspaces/cov8/#readme"
50
71
  }