@containerbase/istanbul-reports-html 0.0.0-semantic-realease → 1.0.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.
Files changed (2) hide show
  1. package/README.md +1 -2
  2. package/package.json +15 -14
package/README.md CHANGED
@@ -1,9 +1,8 @@
1
1
  # istanbul-reports-html
2
2
 
3
- Custom istanbuljs html coverage reporter.
4
-
5
3
  [![build](https://github.com/containerbase/istanbul-reports/actions/workflows/build.yml/badge.svg)](https://github.com/containerbase/istanbul-reports/actions/workflows/build.yml)
6
4
  ![NPM Version](https://img.shields.io/npm/v/%40containerbase%2Fistanbul-reports-html)
7
5
  ![GitHub License](https://img.shields.io/github/license/containerbase/istanbul-reports)
8
6
 
7
+ Custom istanbuljs html coverage reporter.
9
8
  It's basically same as the built-in `html` reporter but replaces `prettify` with `highlight.js` for modern typescript and javascript language features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@containerbase/istanbul-reports-html",
3
- "version": "0.0.0-semantic-realease",
3
+ "version": "1.0.2",
4
4
  "keywords": [
5
5
  "coverage",
6
6
  "highlight",
@@ -24,13 +24,24 @@
24
24
  "vendor/",
25
25
  "index.cjs"
26
26
  ],
27
+ "scripts": {
28
+ "eslint": "eslint --cache .",
29
+ "eslint-fix": "eslint --cache --fix .",
30
+ "prepare": "husky",
31
+ "build": "run-s 'build:*'",
32
+ "build:hljs": "esbuild src/vendor/hljs.ts --bundle --target=es2020 --outfile=vendor/hljs.js --banner:js='/* eslint-disable */ // @ts-nocheck'",
33
+ "build:main": "esbuild src/index.ts --platform=node --target=node20 --format=esm --outfile=dist/index.js --banner:js='/* eslint-disable */ // @ts-nocheck'",
34
+ "lint:types": "run-p 'lint:types:*'",
35
+ "lint:types:default": "tsc",
36
+ "prettier": "prettier --cache -c -u \"**/*.*\"",
37
+ "prettier-fix": "prettier --cache -w -u \"**/*.*\""
38
+ },
27
39
  "dependencies": {
28
40
  "istanbul-lib-report": "^3.0.1",
29
41
  "istanbul-reports": "^3.2.0"
30
42
  },
31
43
  "devDependencies": {
32
44
  "@containerbase/eslint-plugin": "1.1.6",
33
- "@containerbase/semantic-release-pnpm": "1.1.0",
34
45
  "@eslint/js": "9.35.0",
35
46
  "@tsconfig/node20": "20.1.6",
36
47
  "@tsconfig/strictest": "2.0.5",
@@ -58,22 +69,12 @@
58
69
  "typescript": "5.9.2",
59
70
  "typescript-eslint": "8.43.0"
60
71
  },
72
+ "packageManager": "pnpm@10.16.1",
61
73
  "engines": {
62
74
  "node": "^20.9.0 || ^22.11.0",
63
75
  "pnpm": "^10.0.0"
64
76
  },
65
77
  "publishConfig": {
66
78
  "access": "public"
67
- },
68
- "scripts": {
69
- "eslint": "eslint --cache .",
70
- "eslint-fix": "eslint --cache --fix .",
71
- "build": "run-s 'build:*'",
72
- "build:hljs": "esbuild src/vendor/hljs.ts --bundle --target=es2020 --outfile=vendor/hljs.js --banner:js='/* eslint-disable */ // @ts-nocheck'",
73
- "build:main": "esbuild src/index.ts --platform=node --target=node20 --format=esm --outfile=dist/index.js --banner:js='/* eslint-disable */ // @ts-nocheck'",
74
- "lint:types": "run-p 'lint:types:*'",
75
- "lint:types:default": "tsc",
76
- "prettier": "prettier --cache -c -u \"**/*.*\"",
77
- "prettier-fix": "prettier --cache -w -u \"**/*.*\""
78
79
  }
79
- }
80
+ }