browserslist-config-anolilab 6.0.5 → 6.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +10 -0
- package/dist/index.d.cts +1 -1
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
## browserslist-config-anolilab [6.0.6](https://github.com/anolilab/javascript-style-guide/compare/browserslist-config-anolilab@6.0.5...browserslist-config-anolilab@6.0.6) (2025-10-14)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* update package versions and configurations ([55338c4](https://github.com/anolilab/javascript-style-guide/commit/55338c45d98042ea4616c4aa9b4fc6989889b1ac))
|
|
6
|
+
|
|
7
|
+
### Code Refactoring
|
|
8
|
+
|
|
9
|
+
* remove isolatedDeclarationTransformer from browserslist-config-anolilab configuration ([9bac090](https://github.com/anolilab/javascript-style-guide/commit/9bac090854ae699438b2ae164ffa7a540cacbf4a))
|
|
10
|
+
|
|
1
11
|
## browserslist-config-anolilab [6.0.5](https://github.com/anolilab/javascript-style-guide/compare/browserslist-config-anolilab@6.0.4...browserslist-config-anolilab@6.0.5) (2025-10-02)
|
|
2
12
|
|
|
3
13
|
### Bug Fixes
|
package/dist/index.d.cts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
declare const config: {
|
|
2
2
|
legacyBrowsers: readonly ["> 1%", "last 2 versions", "Firefox ESR"];
|
|
3
3
|
modernBrowsers: readonly ["last 2 Chrome versions", "not Chrome < 60", "last 2 Safari versions", "not Safari < 10.1", "last 2 iOS versions", "not iOS < 10.3", "last 2 Firefox versions", "not Firefox < 54", "last 2 Edge versions", "not Edge < 15"];
|
|
4
|
-
/** NOTE: Meaning LTS version. Any version above LTS is not considered as "major release", AFAIK. */
|
|
5
4
|
node: readonly ["last 2 node major versions"];
|
|
6
5
|
production: readonly ["> 1%", "last 2 versions", "Firefox ESR", "not dead"];
|
|
7
6
|
ssr: readonly ["node 22"];
|
|
8
7
|
};
|
|
8
|
+
|
|
9
9
|
export = config;
|
package/dist/index.d.mts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
declare const config: {
|
|
2
2
|
legacyBrowsers: readonly ["> 1%", "last 2 versions", "Firefox ESR"];
|
|
3
3
|
modernBrowsers: readonly ["last 2 Chrome versions", "not Chrome < 60", "last 2 Safari versions", "not Safari < 10.1", "last 2 iOS versions", "not iOS < 10.3", "last 2 Firefox versions", "not Firefox < 54", "last 2 Edge versions", "not Edge < 15"];
|
|
4
|
-
/** NOTE: Meaning LTS version. Any version above LTS is not considered as "major release", AFAIK. */
|
|
5
4
|
node: readonly ["last 2 node major versions"];
|
|
6
5
|
production: readonly ["> 1%", "last 2 versions", "Firefox ESR", "not dead"];
|
|
7
6
|
ssr: readonly ["node 22"];
|
|
8
7
|
};
|
|
9
|
-
|
|
8
|
+
|
|
9
|
+
export { config as default };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
declare const config: {
|
|
2
2
|
legacyBrowsers: readonly ["> 1%", "last 2 versions", "Firefox ESR"];
|
|
3
3
|
modernBrowsers: readonly ["last 2 Chrome versions", "not Chrome < 60", "last 2 Safari versions", "not Safari < 10.1", "last 2 iOS versions", "not iOS < 10.3", "last 2 Firefox versions", "not Firefox < 54", "last 2 Edge versions", "not Edge < 15"];
|
|
4
|
-
/** NOTE: Meaning LTS version. Any version above LTS is not considered as "major release", AFAIK. */
|
|
5
4
|
node: readonly ["last 2 node major versions"];
|
|
6
5
|
production: readonly ["> 1%", "last 2 versions", "Firefox ESR", "not dead"];
|
|
7
6
|
ssr: readonly ["node 22"];
|
|
8
7
|
};
|
|
8
|
+
|
|
9
9
|
export = config;
|