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

@web/config-loader

Package Overview
Dependencies
Maintainers
6
Versions
28
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@web/config-loader - npm Package Compare versions

Comparing version 0.0.4 to 0.1.0

index.d.ts

18

CHANGELOG.md
# @web/config-loader
## 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.4

@@ -4,0 +22,0 @@

14

package.json
{
"name": "@web/config-loader",
"version": "0.0.4",
"version": "0.1.0",
"publishConfig": {

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

"build": "tsc",
"test": "mocha test/**/*.test.js --reporter progress",
"test": "mocha test/**/*.test.js --reporter dot",
"test:ci": "yarn test",
"test:watch": "mocha test/**/*.test.js --watch --watch-files .,src,test --reporter progress"
"test:watch": "mocha test/**/*.test.js --watch --watch-files .,src,test --reporter dot"
},

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

},
"types": "dist/index.d.ts"
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./index.,js",
"require": "./src/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