Socket
Socket
Sign inDemoInstall

@web/browser-logs

Package Overview
Dependencies
Maintainers
6
Versions
35
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@web/browser-logs - npm Package Compare versions

Comparing version 0.0.1 to 0.1.0

index.d.ts

19

CHANGELOG.md
# @web/browser-logs
## 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';
```
## 0.0.1
### Patch Changes
- 5fada4a: improve logging and error reporting

13

package.json
{
"name": "@web/browser-logs",
"version": "0.0.1",
"version": "0.1.0",
"publishConfig": {

@@ -22,5 +22,4 @@ "access": "public"

"build": "tsc",
"test": "node ../test-runner/dist/test-runner.js test/**/*.test.ts",
"test:ci": "yarn test",
"test:watch": "node ../test-runner/dist/test-runner.js test/**/*.test.ts --watch"
"test": "node ../test-runner/dist/test-runner.js test-custom/**/*.test.ts",
"test:watch": "node ../test-runner/dist/test-runner.js test-custom/**/*.test.ts --watch"
},

@@ -44,3 +43,9 @@ "files": [

"@bundled-es-modules/chai": "^4.2.2"
},
"exports": {
".": {
"import": "./index.mjs",
"require": "./dist/index.js"
}
}
}
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