browserslist-config-anolilab 4.2.0 → 4.2.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.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,22 @@
1
+ ## 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
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * Refactor async functions to use async/await and update tsconfig.json ([2a59d6e](https://github.com/anolilab/javascript-style-guide/commit/2a59d6e0d06a5a37c92b222961acbe9f17578f26))
7
+
8
+
9
+ ### Miscellaneous Chores
10
+
11
+ * **deps:** update dependency caniuse-lite to ^1.0.30001512 ([e2adc75](https://github.com/anolilab/javascript-style-guide/commit/e2adc75b63ffd11ff2905105905a17c730d8dd35))
12
+ * Reorganize Prettier config and update README examples ([cc2a4be](https://github.com/anolilab/javascript-style-guide/commit/cc2a4be9a223c722fcec370a8260028cc5f6fbd0))
13
+
14
+
15
+
16
+ ### Dependencies
17
+
18
+ * **@anolilab/semantic-release-preset:** upgraded to 5.0.1
19
+
1
20
  ## browserslist-config-anolilab [4.2.0](https://github.com/anolilab/javascript-style-guide/compare/browserslist-config-anolilab@4.1.3...browserslist-config-anolilab@4.2.0) (2023-07-03)
2
21
 
3
22
 
package/README.md CHANGED
@@ -78,17 +78,18 @@ extends browserslist-config-anolilab
78
78
  Or when using [babel-preset-env](https://github.com/babel/babel/tree/master/experimental/babel-preset-env)
79
79
 
80
80
  ```js
81
- {
81
+ module.exports = {
82
82
  presets: [
83
83
  [
84
84
  'env',
85
85
  {
86
86
  targets: {
87
+ // eslint-disable-next-line global-require
87
88
  browsers: require('browserslist-config-anolilab'),
88
89
  },
89
90
  },
90
91
  ],
91
- ];
92
+ ],
92
93
  }
93
94
  ```
94
95
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "browserslist-config-anolilab",
3
- "version": "4.2.0",
3
+ "version": "4.2.1",
4
4
  "description": "Shareable browserlist config for Anolilab projects.",
5
5
  "keywords": [
6
6
  "browserslist",
@@ -59,9 +59,9 @@
59
59
  "test:coverage": "vitest --config ./vitest.config.ts --run --coverage"
60
60
  },
61
61
  "devDependencies": {
62
- "@anolilab/semantic-release-preset": "5.0.0",
62
+ "@anolilab/semantic-release-preset": "5.0.1",
63
63
  "browserslist": "4.21.9",
64
- "caniuse-lite": "^1.0.30001511",
64
+ "caniuse-lite": "^1.0.30001512",
65
65
  "cross-env": "^7.0.3",
66
66
  "rimraf": "^5.0.1",
67
67
  "semantic-release": "^21.0.6",