Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@web/test-runner-coverage-v8

Package Overview
Dependencies
Maintainers
6
Versions
46
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@web/test-runner-coverage-v8 - npm Package Compare versions

Comparing version 0.0.4 to 0.1.0

26

CHANGELOG.md
# @web/test-runner-coverage-v8
## 0.1.0
### Minor Changes
- 9be1f95: Added native node es module entrypoints. This is a breaking change. Before, native node es module imports would import a CJS module as a default import and require destructuring afterwards:
```js
import playwrightModule from '@web/test-runner-playwright';
const { playwrightLauncher } = playwrightModule;
```
Now, the exports are only available directly as a named export:
```js
import { playwrightLauncher } from '@web/test-runner-playwright';
```
### Patch Changes
- Updated dependencies [cdddf68]
- Updated dependencies [fdcf2e5]
- Updated dependencies [62ff8b2]
- Updated dependencies [9be1f95]
- @web/test-runner-core@0.7.0
## 0.0.4

@@ -4,0 +30,0 @@

16

package.json
{
"name": "@web/test-runner-coverage-v8",
"version": "0.0.4",
"version": "0.1.0",
"publishConfig": {
"access": "public"
},
"description": "Test coverage using v8",
"description": "Code coverage using v8",
"license": "MIT",

@@ -23,5 +23,3 @@ "repository": {

},
"files": [
"dist"
],
"files": ["dist"],
"keywords": [

@@ -36,3 +34,3 @@ "web",

"dependencies": {
"@web/test-runner-core": "^0.6.9",
"@web/test-runner-core": "^0.7.0",
"istanbul-lib-coverage": "^3.0.0",

@@ -44,3 +42,9 @@ "v8-to-istanbul": "^4.1.4"

"@types/picomatch": "^2.2.1"
},
"exports": {
".": {
"import": "./index.mjs",
"require": "./dist/index.js"
}
}
}

@@ -1,3 +0,3 @@

# Test Coverage v8
# Code Coverage v8
Profile test coverage using v8. Internal package, used by `@web/test-runner-chrome` and `@web/test-runner-playwright`.
Profile code coverage using v8. Internal package, used by `@web/test-runner-chrome` and `@web/test-runner-playwright`.
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc