browserslist-config-anolilab 4.2.1 → 5.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 (2) hide show
  1. package/CHANGELOG.md +42 -1
  2. package/package.json +8 -7
package/CHANGELOG.md CHANGED
@@ -1,3 +1,45 @@
1
+ ## browserslist-config-anolilab [5.0.1](https://github.com/anolilab/javascript-style-guide/compare/browserslist-config-anolilab@5.0.0...browserslist-config-anolilab@5.0.1) (2023-07-26)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * included 'skip.js' in package.json for several packages ([1c84b33](https://github.com/anolilab/javascript-style-guide/commit/1c84b33435abc75666214632eba4566f36c78e1a))
7
+
8
+
9
+ ### Miscellaneous Chores
10
+
11
+ * **deps:** update devdependencies ([a1724b8](https://github.com/anolilab/javascript-style-guide/commit/a1724b836e1720de713d1d5771db5aca750f7f5f))
12
+
13
+
14
+
15
+ ### Dependencies
16
+
17
+ * **@anolilab/semantic-release-preset:** upgraded to 6.0.2
18
+
19
+ ## browserslist-config-anolilab [5.0.0](https://github.com/anolilab/javascript-style-guide/compare/browserslist-config-anolilab@4.2.1...browserslist-config-anolilab@5.0.0) (2023-07-18)
20
+
21
+
22
+ ### ⚠ BREAKING CHANGES
23
+
24
+ * fixing broken releases that semantic-release did create
25
+ Signed-off-by: prisis <d.bannert@anolilab.de>
26
+
27
+ ### Bug Fixes
28
+
29
+ * fixed broken releases ([d46de22](https://github.com/anolilab/javascript-style-guide/commit/d46de22a999cc09cc46f9a4d4e7682441705a861))
30
+ * update node version ([9a22309](https://github.com/anolilab/javascript-style-guide/commit/9a22309775cd2219320eed903ac3e22f66ffbe94))
31
+
32
+
33
+ ### Miscellaneous Chores
34
+
35
+ * Update devDependencies in package.json ([eee78cd](https://github.com/anolilab/javascript-style-guide/commit/eee78cd1cb1395a9f16dd5395f7e28ac79942dfe))
36
+
37
+
38
+
39
+ ### Dependencies
40
+
41
+ * **@anolilab/semantic-release-preset:** upgraded to 6.0.1
42
+
1
43
  ## browserslist-config-anolilab [4.2.1](https://github.com/anolilab/javascript-style-guide/compare/browserslist-config-anolilab@4.2.0...browserslist-config-anolilab@4.2.1) (2023-07-05)
2
44
 
3
45
 
@@ -12,7 +54,6 @@
12
54
  * Reorganize Prettier config and update README examples ([cc2a4be](https://github.com/anolilab/javascript-style-guide/commit/cc2a4be9a223c722fcec370a8260028cc5f6fbd0))
13
55
 
14
56
 
15
-
16
57
  ### Dependencies
17
58
 
18
59
  * **@anolilab/semantic-release-preset:** upgraded to 5.0.1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "browserslist-config-anolilab",
3
- "version": "4.2.1",
3
+ "version": "5.0.1",
4
4
  "description": "Shareable browserlist config for Anolilab projects.",
5
5
  "keywords": [
6
6
  "browserslist",
@@ -46,7 +46,8 @@
46
46
  "source": "src/index.ts",
47
47
  "types": "dist/index.d.ts",
48
48
  "files": [
49
- "dist/**",
49
+ "dist",
50
+ "skip.js",
50
51
  "README.md",
51
52
  "CHANGELOG.md",
52
53
  "LICENSE.md"
@@ -59,17 +60,17 @@
59
60
  "test:coverage": "vitest --config ./vitest.config.ts --run --coverage"
60
61
  },
61
62
  "devDependencies": {
62
- "@anolilab/semantic-release-preset": "5.0.1",
63
+ "@anolilab/semantic-release-preset": "6.0.2",
63
64
  "browserslist": "4.21.9",
64
- "caniuse-lite": "^1.0.30001512",
65
+ "caniuse-lite": "^1.0.30001517",
65
66
  "cross-env": "^7.0.3",
66
67
  "rimraf": "^5.0.1",
67
- "semantic-release": "^21.0.6",
68
+ "semantic-release": "^21.0.7",
68
69
  "tsup": "^7.1.0",
69
- "vitest": "^0.32.4"
70
+ "vitest": "^0.33.0"
70
71
  },
71
72
  "engines": {
72
- "node": ">=16"
73
+ "node": ">=18"
73
74
  },
74
75
  "publishConfig": {
75
76
  "access": "public",