browserslist-config-anolilab 4.0.2 → 4.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.
Files changed (3) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/README.md +11 -0
  3. package/package.json +10 -8
package/CHANGELOG.md CHANGED
@@ -1,3 +1,19 @@
1
+ ## browserslist-config-anolilab [4.0.4](https://github.com/anolilab/javascript-style-guide/compare/browserslist-config-anolilab@4.0.3...browserslist-config-anolilab@4.0.4) (2023-06-22)
2
+
3
+
4
+
5
+ ### Dependencies
6
+
7
+ * **@anolilab/semantic-release-preset:** upgraded to 3.1.2
8
+
9
+ ## browserslist-config-anolilab [4.0.3](https://github.com/anolilab/javascript-style-guide/compare/browserslist-config-anolilab@4.0.2...browserslist-config-anolilab@4.0.3) (2023-06-15)
10
+
11
+
12
+
13
+ ### Dependencies
14
+
15
+ * **@anolilab/semantic-release-preset:** upgraded to 3.1.1
16
+
1
17
  ## browserslist-config-anolilab [4.0.2](https://github.com/anolilab/javascript-style-guide/compare/browserslist-config-anolilab@4.0.1...browserslist-config-anolilab@4.0.2) (2023-06-11)
2
18
 
3
19
 
package/README.md CHANGED
@@ -2,6 +2,12 @@
2
2
 
3
3
  This configuration reflects Growcss’s supported browser policy for their UI library and build tools.
4
4
 
5
+ <div align="center">
6
+
7
+ [![npm-image]][npm-url] [![license-image]][license-url]
8
+
9
+ </div>
10
+
5
11
  ---
6
12
 
7
13
  <div align="center">
@@ -124,3 +130,8 @@ License
124
130
  -------------
125
131
 
126
132
  The anolilab javascript-style-guide is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT)
133
+
134
+ [license-image]: https://img.shields.io/npm/l/browserslist-config-anolilab?color=blueviolet&style=for-the-badge
135
+ [license-url]: LICENSE.md "license"
136
+ [npm-image]: https://img.shields.io/npm/v/browserslist-config-anolilab/latest.svg?style=for-the-badge&logo=npm
137
+ [npm-url]: https://www.npmjs.com/package/browserslist-config-anolilab/v/latest "npm"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "browserslist-config-anolilab",
3
- "version": "4.0.2",
3
+ "version": "4.0.4",
4
4
  "description": "Shareable browserlist config for Anolilab projects.",
5
5
  "keywords": [
6
6
  "browserslist",
@@ -54,17 +54,19 @@
54
54
  "scripts": {
55
55
  "build": "cross-env NODE_ENV=development tsup",
56
56
  "build:prod": "cross-env NODE_ENV=production tsup",
57
- "clean": "rimraf node_modules dist"
57
+ "clean": "rimraf node_modules dist",
58
+ "test": "vitest --config ./vitest.config.ts",
59
+ "test:coverage": "vitest --config ./vitest.config.ts --run --coverage"
58
60
  },
59
61
  "devDependencies": {
60
- "semantic-release": "^21.0.4",
61
- "@anolilab/semantic-release-preset": "3.1.0",
62
- "browserslist": "4.21.7",
63
- "caniuse-lite": "^1.0.30001497",
62
+ "@anolilab/semantic-release-preset": "3.1.2",
63
+ "browserslist": "4.21.9",
64
+ "caniuse-lite": "^1.0.30001506",
64
65
  "cross-env": "^7.0.3",
65
66
  "rimraf": "^5.0.1",
66
- "tsup": "^6.7.0",
67
- "vitest": "^0.32.0"
67
+ "semantic-release": "^21.0.5",
68
+ "tsup": "^7.0.0",
69
+ "vitest": "^0.32.2"
68
70
  },
69
71
  "engines": {
70
72
  "node": ">=16"