browserslist-config-anolilab 6.0.7 → 7.0.1

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +21 -0
  2. package/README.md +56 -54
  3. package/package.json +6 -3
package/CHANGELOG.md CHANGED
@@ -1,3 +1,24 @@
1
+ ## browserslist-config-anolilab [7.0.1](https://github.com/anolilab/javascript-style-guide/compare/browserslist-config-anolilab@7.0.0...browserslist-config-anolilab@7.0.1) (2026-01-05)
2
+
3
+ ### Bug Fixes
4
+
5
+ * update package versions and configurations ([6a83bb6](https://github.com/anolilab/javascript-style-guide/commit/6a83bb692298f0f037c4af6e5830865cb0a6d847))
6
+
7
+ ## browserslist-config-anolilab [7.0.0](https://github.com/anolilab/javascript-style-guide/compare/browserslist-config-anolilab@6.0.7...browserslist-config-anolilab@7.0.0) (2025-12-22)
8
+
9
+ ### Bug Fixes
10
+
11
+ * update package versions and configurations ([ad6cb2c](https://github.com/anolilab/javascript-style-guide/commit/ad6cb2c90ed4049ea8f136c583c0db1e477b20e7))
12
+
13
+ ### Styles
14
+
15
+ * update package configurations and dependencies ([98475c5](https://github.com/anolilab/javascript-style-guide/commit/98475c5e5e7bc5d832ef10d3d723f75340223347))
16
+
17
+ ### Miscellaneous Chores
18
+
19
+ * remove deprecated packages and update repository URLs ([0a3d423](https://github.com/anolilab/javascript-style-guide/commit/0a3d42307102047ac98d6a0c0ce46c7dfe5a6446))
20
+ * update configuration and scripts ([5d6a44f](https://github.com/anolilab/javascript-style-guide/commit/5d6a44f99568b5f67939dfc52047fa742fd2bf58))
21
+
1
22
  ## browserslist-config-anolilab [6.0.7](https://github.com/anolilab/javascript-style-guide/compare/browserslist-config-anolilab@6.0.6...browserslist-config-anolilab@6.0.7) (2025-11-16)
2
23
 
3
24
  ### Bug Fixes
package/README.md CHANGED
@@ -1,10 +1,25 @@
1
- <div align="center">
2
- <h1>Shareable Browserslist Config</h1>
1
+ <!-- START_PACKAGE_OG_IMAGE_PLACEHOLDER -->
2
+
3
+ <a href="https://github.com/anolilab/semantic-release" align="center">
4
+
5
+ <img src="__assets__/package-og.svg" alt="browserslist-config-anolilab" />
6
+
7
+ </a>
8
+
9
+ <h3 align="center">Shareable browserlist config for Anolilab projects.</h3>
10
+
11
+ <!-- END_PACKAGE_OG_IMAGE_PLACEHOLDER -->
12
+
13
+ <br />
3
14
 
4
- [![npm-image]][npm-url] [![license-image]][license-url]
15
+ <div align="center">
5
16
 
17
+ [![typescript-image][typescript-badge]][typescript-url]
18
+ [![mit licence][license-badge]][license]
19
+ [![npm downloads][npm-downloads-badge]][npm-downloads]
20
+ [![Chat][chat-badge]][chat]
21
+ [![PRs Welcome][prs-welcome-badge]][prs-welcome]
6
22
 
7
- It helps you maintain consistency across different projects and ensures that your projects support the same set of browsers.
8
23
  </div>
9
24
 
10
25
  ---
@@ -19,46 +34,20 @@ It helps you maintain consistency across different projects and ensures that you
19
34
 
20
35
  ---
21
36
 
22
- ## Purpose
23
-
24
- Our package aims to simplify and streamline the configuration process for your projects, ensuring efficiency and minimizing errors. By implementing the following strategies, we achieve this goal:
25
-
26
- - Centralized Browser Targeting: Say goodbye to the hassle of defining target browsers for each individual project. Our package eliminates this need, providing a single, consistent configuration.
27
-
28
- - Widely Used Target Browsers: We offer a carefully curated selection of popular target browsers. You can rely on our pre-defined set to cover a wide range of user preferences.
29
-
30
- - Effortless Updates: Keeping up with evolving browser requirements is effortless with our package. You can easily update the target browsers across all your projects whenever necessary, saving valuable time and effort.
31
-
32
- In summary, our Browserslist Config ensures a superior user experience across various browsers, making it a vital tool for maintaining high-quality standards. Your users will enjoy a seamless browsing experience, regardless of their chosen platform.
33
-
34
- ## Installation
35
-
36
- Install the package using your preferred package manager:
37
-
38
- ```shell
39
- npm install browserslist-config-anolilab --save-dev
40
- ```
37
+ ## Install
41
38
 
42
39
  ```sh
43
- pnpm add -D browserslist-config-anolilab
40
+ npm install browserslist-config-anolilab
44
41
  ```
45
42
 
46
43
  ```sh
47
- yarn add -D browserslist-config-anolilab
44
+ yarn add browserslist-config-anolilab
48
45
  ```
49
46
 
50
- Optionally, you can install `browserslist` to use the `browserslist` CLI.
51
-
52
- Adding the following script to your root package.json file makes it easier to run the browserslist command in your mono-repository:
53
-
54
- ```bash
55
- pnpm pkg set scripts.lint:browsers="browserslist"
47
+ ```sh
48
+ pnpm add browserslist-config-anolilab
56
49
  ```
57
50
 
58
- For `npm` users, replace `pnpm` with `npm` in the above command.
59
-
60
- This script allows you to run the `browserslist` command by simply typing `pnpm run lint:browsers` (or `npm run lint:browsers` for npm users) in the terminal.
61
-
62
51
  ## Usage
63
52
 
64
53
  ### Package.json
@@ -81,11 +70,11 @@ Or when using [babel-preset-env](https://github.com/babel/babel/tree/master/expe
81
70
  module.exports = {
82
71
  presets: [
83
72
  [
84
- 'env',
73
+ "env",
85
74
  {
86
75
  targets: {
87
76
  // eslint-disable-next-line global-require
88
- browsers: require('browserslist-config-anolilab'),
77
+ browsers: require("browserslist-config-anolilab"),
89
78
  },
90
79
  },
91
80
  ],
@@ -123,31 +112,44 @@ module.exports = {
123
112
  }
124
113
  ```
125
114
 
115
+ ## Related
116
+
126
117
  ## Supported Node.js Versions
127
118
 
128
- Libraries in this ecosystem make the best effort to track
129
- [Node.js’ release schedule](https://nodejs.org/en/about/releases/). Here’s [a
130
- post on why we think this is important](https://medium.com/the-node-js-collection/maintainers-should-consider-following-node-js-release-schedule-ab08ed4de71a).
119
+ Libraries in this ecosystem make the best effort to track [Node.js' release schedule](https://github.com/nodejs/release#release-schedule).
131
120
 
132
- Contributing
133
- ------------
121
+ Here's [a post on why we think this is important](https://medium.com/the-node-js-collection/maintainers-should-consider-following-node-js-release-schedule-ab08ed4de71a).
134
122
 
135
- If you would like to help take a look at the [list of issues](https://github.com/anolilab/javascript-style-guide/issues) and check our [Contributing](.github/CONTRIBUTING.md) guild.
123
+ ## Contributing
124
+
125
+ If you would like to help take a look at the [list of issues](https://github.com/anolilab/javascript-style-guide/issues) and check our [Contributing](.github/CONTRIBUTING.md) guidelines.
136
126
 
137
127
  > **Note:** please note that this project is released with a Contributor Code of Conduct. By participating in this project you agree to abide by its terms.
138
128
 
139
- Credits
140
- -------------
129
+ ## Credits
130
+
131
+ - [Daniel Bannert](https://github.com/prisis)
132
+
133
+ - [All Contributors](https://github.com/anolilab/javascript-style-guide/graphs/contributors)
134
+
135
+ ## Made with ❤️ at Anolilab
136
+
137
+ This is an open source project and will always remain free to use. If you think it's cool, please star it 🌟. [Anolilab](https://www.anolilab.com/open-source) is a Development and AI Studio. Contact us at [hello@anolilab.com](mailto:hello@anolilab.com) if you need any help with these technologies or just want to say hi!
141
138
 
142
- - [Daniel Bannert](https://github.com/prisis)
143
- - [All Contributors](https://github.com/anolilab/javascript-style-guide/graphs/contributors)
139
+ ## License
144
140
 
145
- License
146
- -------------
141
+ The anolilab browserslist-config-anolilab is open-sourced software licensed under the [MIT][license-url]
147
142
 
148
- The anolilab javascript-style-guide is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT)
143
+ <!-- badges -->
149
144
 
150
- [license-image]: https://img.shields.io/npm/l/browserslist-config-anolilab?color=blueviolet&style=for-the-badge
151
- [license-url]: LICENSE.md "license"
152
- [npm-image]: https://img.shields.io/npm/v/browserslist-config-anolilab/latest.svg?style=for-the-badge&logo=npm
153
- [npm-url]: https://www.npmjs.com/package/browserslist-config-anolilab/v/latest "npm"
145
+ [license-badge]: https://img.shields.io/npm/l/browserslist-config-anolilab?style=for-the-badge
146
+ [license]: https://github.com/anolilab/javascript-style-guide/blob/main/LICENSE
147
+ [npm-downloads-badge]: https://img.shields.io/npm/dm/browserslist-config-anolilab?style=for-the-badge
148
+ [npm-downloads]: https://www.npmjs.com/package/browserslist-config-anolilab
149
+ [prs-welcome-badge]: https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=for-the-badge
150
+ [prs-welcome]: https://github.com/anolilab/javascript-style-guide/blob/main/.github/CONTRIBUTING.md
151
+ [chat-badge]: https://img.shields.io/discord/902465130518949899.svg?style=for-the-badge
152
+ [chat]: https://discord.gg/4VuvwWGaaB
153
+ [typescript-badge]: https://img.shields.io/badge/Typescript-294E80.svg?style=for-the-badge&logo=typescript
154
+ [typescript-url]: https://www.typescriptlang.org/
155
+ [license-url]: https://opensource.org/licenses/MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "browserslist-config-anolilab",
3
- "version": "6.0.7",
3
+ "version": "7.0.1",
4
4
  "description": "Shareable browserlist config for Anolilab projects.",
5
5
  "keywords": [
6
6
  "browserslist",
@@ -14,7 +14,7 @@
14
14
  },
15
15
  "repository": {
16
16
  "type": "git",
17
- "url": "https://github.com/anolilab/javascript-style-guide.git",
17
+ "url": "git+https://github.com/anolilab/javascript-style-guide.git",
18
18
  "directory": "packages/browserslist-config-anolilab"
19
19
  },
20
20
  "funding": [
@@ -63,5 +63,8 @@
63
63
  "publishConfig": {
64
64
  "access": "public",
65
65
  "provenance": true
66
- }
66
+ },
67
+ "dependencies": {},
68
+ "peerDependencies": {},
69
+ "optionalDependencies": {}
67
70
  }