@amedia/browserslist-config
Advanced tools
Comparing version 1.0.1 to 1.0.2
# @amedia/browserslist-config | ||
## 1.0.2 | ||
### Patch Changes | ||
- dbb3437: add two new rules to eslint-base | ||
Adding rules may cause previously linted code to fail, though these two | ||
rules may be automatically fixed, so running `kragl lint --fix` should | ||
resolve the simple cases automatically. | ||
The reason for adding a requirement for the `node:` protocol prefix is | ||
to make it absolutely clear that this is an internal node module. This | ||
makes it easier for the reader to, as one example, immediately spot any | ||
node modules that may need polyfill for the browser. | ||
The second rules pushes us to use ESM everywhere it is expected by | ||
default. All CommonJS code needs to be moved to `.cjs` files, regardless | ||
if the module type is "module" or not. | ||
This also serves to help us move to a pure ESM based ecosystem for | ||
our internal codebase. | ||
## 1.0.1 | ||
@@ -4,0 +26,0 @@ |
{ | ||
"name": "@amedia/browserslist-config", | ||
"version": "1.0.1", | ||
"version": "1.0.2", | ||
"description": "Browserslist config for Amedia", | ||
"type": "commonjs", | ||
"main": "./index.js", | ||
"main": "./index.cjs", | ||
"author": "", | ||
@@ -8,0 +8,0 @@ "license": "ISC", |
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
4046