@plugjs/cov8 0.1.0 → 0.1.1

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.
@@ -61,7 +61,7 @@ export interface V8CoverageData {
61
61
  * `greatest_lower_bound`, and we _reverse_ the lookup of the sourcemaps (from
62
62
  * source code to generated code).
63
63
  */
64
- export declare type SourceMapBias = 'greatest_lower_bound' | 'least_upper_bound' | 'none' | undefined;
64
+ export type SourceMapBias = 'greatest_lower_bound' | 'least_upper_bound' | 'none' | undefined;
65
65
  /** Interface providing coverage data */
66
66
  export interface CoverageAnalyser {
67
67
  /** Return the number of coverage passes for the given location */
package/dist/report.d.ts CHANGED
@@ -46,7 +46,7 @@ export interface CoverageResult {
46
46
  nodeCoverage: NodeCoverageResult;
47
47
  }
48
48
  /** Aggregation of {@link CoverageResult} over all files */
49
- export declare type CoverageResults = Record<AbsolutePath, CoverageResult>;
49
+ export type CoverageResults = Record<AbsolutePath, CoverageResult>;
50
50
  /** Our coverage report, per file */
51
51
  export interface CoverageReport {
52
52
  results: CoverageResults;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plugjs/cov8",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "type": "commonjs",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.mjs",
@@ -37,13 +37,13 @@
37
37
  "@plugjs/eslint-plugin": "^0.1.0",
38
38
  "@plugjs/plug": "^0.1.0",
39
39
  "@plugjs/typescript": "^0.1.0",
40
- "@types/node": "<17",
41
- "typescript": "^4.8.4"
40
+ "@types/node": "<19",
41
+ "typescript": "^4.9.3"
42
42
  },
43
43
  "dependencies": {
44
- "@babel/parser": "^7.20.2",
45
- "@babel/types": "^7.20.2",
46
- "@plugjs/cov8-html": "^0.1.0",
44
+ "@babel/parser": "^7.20.5",
45
+ "@babel/types": "^7.20.5",
46
+ "@plugjs/cov8-html": "^0.1.1",
47
47
  "source-map": "^0.7.4"
48
48
  },
49
49
  "peerDependencies": {