@web/config-loader
Advanced tools
Comparing version 0.0.4 to 0.1.0
# @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 @@ |
{ | ||
"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" | ||
} | ||
} | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
9612
11
167