browserslist-config-anolilab 6.0.1 → 6.0.3

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 CHANGED
@@ -1,3 +1,28 @@
1
+ ## 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)
2
+
3
+ ### Bug Fixes
4
+
5
+ * 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))
6
+ * update dependencies in browserslist-config-anolilab ([786fce9](https://github.com/anolilab/javascript-style-guide/commit/786fce95b0abbaa85a179671fe8bbcdac9f80774))
7
+
8
+ ### Miscellaneous Chores
9
+
10
+ * **deps:** update package.json dependencies and exports order ([be1796b](https://github.com/anolilab/javascript-style-guide/commit/be1796b4c8e02fa1d6981c3cca0b06497ad52666))
11
+ * update dependencies across packages ([db14c14](https://github.com/anolilab/javascript-style-guide/commit/db14c14d94b2e21e8c23791b9dc83c391b1a9a87))
12
+ * update dependencies and package versions across multiple packages ([6499209](https://github.com/anolilab/javascript-style-guide/commit/64992094883c3305626a09ec586226292ba88e85))
13
+ * update dependencies and versions across packages ([edf84af](https://github.com/anolilab/javascript-style-guide/commit/edf84af6f9ff9a290c4e3705f3466068777e9992))
14
+ * update dependencies and versions across packages ([48812ea](https://github.com/anolilab/javascript-style-guide/commit/48812ea5c4de5833636b2ed3b7302a35120aba3a))
15
+
16
+ ## 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)
17
+
18
+ ### Bug Fixes
19
+
20
+ * enhance packem configuration with isolated declaration transformer and cjsInterop ([fb759fc](https://github.com/anolilab/javascript-style-guide/commit/fb759fc1246adb01d2f5d7a1b254eb036a86ec13))
21
+
22
+ ### Miscellaneous Chores
23
+
24
+ * updated dev deps ([e564609](https://github.com/anolilab/javascript-style-guide/commit/e564609d20d40f7db705f32fcb4060359aec9a08))
25
+
1
26
  ## browserslist-config-anolilab [6.0.1](https://github.com/anolilab/javascript-style-guide/compare/browserslist-config-anolilab@6.0.0...browserslist-config-anolilab@6.0.1) (2025-05-31)
2
27
 
3
28
  ### Bug Fixes
package/dist/index.d.cts CHANGED
@@ -1,9 +1,9 @@
1
1
  declare const config: {
2
- legacyBrowsers: string[];
3
- modernBrowsers: string[];
4
- node: string[];
5
- production: string[];
6
- ssr: string[];
2
+ legacyBrowsers: readonly ["> 1%", "last 2 versions", "Firefox ESR"];
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
+ node: readonly ["last 2 node major versions"];
6
+ production: readonly ["> 1%", "last 2 versions", "Firefox ESR", "not dead"];
7
+ ssr: readonly ["node 22"];
7
8
  };
8
-
9
- export { config as default };
9
+ export = config;
package/dist/index.d.mts CHANGED
@@ -1,9 +1,9 @@
1
1
  declare const config: {
2
- legacyBrowsers: string[];
3
- modernBrowsers: string[];
4
- node: string[];
5
- production: string[];
6
- ssr: string[];
2
+ legacyBrowsers: readonly ["> 1%", "last 2 versions", "Firefox ESR"];
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
+ node: readonly ["last 2 node major versions"];
6
+ production: readonly ["> 1%", "last 2 versions", "Firefox ESR", "not dead"];
7
+ ssr: readonly ["node 22"];
7
8
  };
8
-
9
- export { config as default };
9
+ export default config;
package/dist/index.d.ts CHANGED
@@ -1,9 +1,9 @@
1
1
  declare const config: {
2
- legacyBrowsers: string[];
3
- modernBrowsers: string[];
4
- node: string[];
5
- production: string[];
6
- ssr: string[];
2
+ legacyBrowsers: readonly ["> 1%", "last 2 versions", "Firefox ESR"];
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
+ node: readonly ["last 2 node major versions"];
6
+ production: readonly ["> 1%", "last 2 versions", "Firefox ESR", "not dead"];
7
+ ssr: readonly ["node 22"];
7
8
  };
8
-
9
- export { config as default };
9
+ export = config;
package/dist/index.mjs CHANGED
@@ -1 +1 @@
1
- const o={legacyBrowsers:["> 1%","last 2 versions","Firefox ESR"],modernBrowsers:["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"],node:["last 2 node major versions"],production:["> 1%","last 2 versions","Firefox ESR","not dead"],ssr:["node 22"]};export{o as default};
1
+ const s={legacyBrowsers:["> 1%","last 2 versions","Firefox ESR"],modernBrowsers:["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"],node:["last 2 node major versions"],production:["> 1%","last 2 versions","Firefox ESR","not dead"],ssr:["node 22"]};export{s as default};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "browserslist-config-anolilab",
3
- "version": "6.0.1",
3
+ "version": "6.0.3",
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
- "require": "./dist/index.cjs",
40
- "import": "./dist/index.mjs"
39
+ "import": "./dist/index.mjs",
40
+ "require": "./dist/index.cjs"
41
41
  },
42
42
  "./package.json": "./package.json"
43
43
  },