🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

@web/config-loader

Package Overview
Dependencies
Maintainers
6
Versions
29
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

to
0.1.0

index.d.ts
# @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"
}
}
}