browserslist-config-anolilab 6.0.2 → 6.0.4
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 +26 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,29 @@
|
|
|
1
|
+
## browserslist-config-anolilab [6.0.4](https://github.com/anolilab/javascript-style-guide/compare/browserslist-config-anolilab@6.0.3...browserslist-config-anolilab@6.0.4) (2025-10-02)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* add Prettier configuration and ignore files for browserslist-config-anolilab ([a6ac13b](https://github.com/anolilab/javascript-style-guide/commit/a6ac13b620096974440701269c0e914455d4ac3e))
|
|
6
|
+
|
|
7
|
+
### Miscellaneous Chores
|
|
8
|
+
|
|
9
|
+
* **deps:** update package dependencies to latest versions ([028b723](https://github.com/anolilab/javascript-style-guide/commit/028b7237222bfddb4f4ce43a1247f5a3ed9f2c68))
|
|
10
|
+
* update @visulima/packem to version 2.0.0-alpha.19 and add eslint-plugin-erasable-syntax-only@0.3.1\n\n- Updated all instances of @visulima/packem to the latest alpha version.\n- Added new dependency eslint-plugin-erasable-syntax-only for enhanced linting capabilities.\n- Updated devDependencies in various package.json files to ensure consistency across configurations. ([0d62091](https://github.com/anolilab/javascript-style-guide/commit/0d620916bbabb0d64266136978c0b038844e3bc7))
|
|
11
|
+
|
|
12
|
+
## browserslist-config-anolilab [6.0.3](https://github.com/anolilab/javascript-style-guide/compare/browserslist-config-anolilab@6.0.2...browserslist-config-anolilab@6.0.3) (2025-09-05)
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
* update @visulima/packem to version 2.0.0-alpha.18 and refactor packem.config.ts ([a70decf](https://github.com/anolilab/javascript-style-guide/commit/a70decf9e8baa71968c1c561a08ee65089914211))
|
|
17
|
+
* update dependencies in browserslist-config-anolilab ([786fce9](https://github.com/anolilab/javascript-style-guide/commit/786fce95b0abbaa85a179671fe8bbcdac9f80774))
|
|
18
|
+
|
|
19
|
+
### Miscellaneous Chores
|
|
20
|
+
|
|
21
|
+
* **deps:** update package.json dependencies and exports order ([be1796b](https://github.com/anolilab/javascript-style-guide/commit/be1796b4c8e02fa1d6981c3cca0b06497ad52666))
|
|
22
|
+
* update dependencies across packages ([db14c14](https://github.com/anolilab/javascript-style-guide/commit/db14c14d94b2e21e8c23791b9dc83c391b1a9a87))
|
|
23
|
+
* update dependencies and package versions across multiple packages ([6499209](https://github.com/anolilab/javascript-style-guide/commit/64992094883c3305626a09ec586226292ba88e85))
|
|
24
|
+
* update dependencies and versions across packages ([edf84af](https://github.com/anolilab/javascript-style-guide/commit/edf84af6f9ff9a290c4e3705f3466068777e9992))
|
|
25
|
+
* update dependencies and versions across packages ([48812ea](https://github.com/anolilab/javascript-style-guide/commit/48812ea5c4de5833636b2ed3b7302a35120aba3a))
|
|
26
|
+
|
|
1
27
|
## browserslist-config-anolilab [6.0.2](https://github.com/anolilab/javascript-style-guide/compare/browserslist-config-anolilab@6.0.1...browserslist-config-anolilab@6.0.2) (2025-06-01)
|
|
2
28
|
|
|
3
29
|
### Bug Fixes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "browserslist-config-anolilab",
|
|
3
|
-
"version": "6.0.
|
|
3
|
+
"version": "6.0.4",
|
|
4
4
|
"description": "Shareable browserlist config for Anolilab projects.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"browserslist",
|
|
@@ -36,8 +36,8 @@
|
|
|
36
36
|
"exports": {
|
|
37
37
|
".": {
|
|
38
38
|
"types": "./dist/index.d.cts",
|
|
39
|
-
"
|
|
40
|
-
"
|
|
39
|
+
"import": "./dist/index.mjs",
|
|
40
|
+
"require": "./dist/index.cjs"
|
|
41
41
|
},
|
|
42
42
|
"./package.json": "./package.json"
|
|
43
43
|
},
|