browserslist-config-anolilab 4.1.2 → 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,46 @@
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
+
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)
21
+
22
+
23
+ ### Features
24
+
25
+ * Update dependencies version in pnpm-lock.yaml ([1f75f7b](https://github.com/anolilab/javascript-style-guide/commit/1f75f7bec8190da5ae6f2ba7e6ac249d802fabb4))
26
+
27
+
28
+ ### Styles
29
+
30
+ * "Rearrange order of task definitions and disable ESLint on non-literal fs filename" ([d48a8c0](https://github.com/anolilab/javascript-style-guide/commit/d48a8c0a0f87582e8a7389a4f9e025cdcbb113da))
31
+
32
+
33
+ ### Miscellaneous Chores
34
+
35
+ * removed "semantic-release-npm-deprecate" not working like expected ([a988c89](https://github.com/anolilab/javascript-style-guide/commit/a988c898ebe4941cc6534ee3f8e1ec7e7a85d929))
36
+ * Update deprecation versions in releaserc.json files ([b7b7ab7](https://github.com/anolilab/javascript-style-guide/commit/b7b7ab7c776ac5f2a0908259c5e677dc3f55de46))
37
+
38
+
39
+
40
+ ### Dependencies
41
+
42
+ * **@anolilab/semantic-release-preset:** upgraded to 5.0.0
43
+
1
44
  ## browserslist-config-anolilab [4.1.2](https://github.com/anolilab/javascript-style-guide/compare/browserslist-config-anolilab@4.1.1...browserslist-config-anolilab@4.1.2) (2023-06-28)
2
45
 
3
46
 
package/LICENSE.md CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2021 Anolilab
3
+ Copyright (c) 2023 Anolilab
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
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/dist/index.d.mts CHANGED
@@ -1,9 +1,9 @@
1
1
  declare const config: {
2
- production: string[];
3
2
  legacyBrowsers: string[];
4
3
  modernBrowsers: string[];
5
- ssr: string[];
6
4
  node: string[];
5
+ production: string[];
6
+ ssr: string[];
7
7
  };
8
8
 
9
9
  export { config as default };
package/dist/index.d.ts CHANGED
@@ -1,9 +1,9 @@
1
1
  declare const config: {
2
- production: string[];
3
2
  legacyBrowsers: string[];
4
3
  modernBrowsers: string[];
5
- ssr: string[];
6
4
  node: string[];
5
+ production: string[];
6
+ ssr: string[];
7
7
  };
8
8
 
9
9
  export { config as default };
package/dist/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var o={production:["> 1%","last 2 versions","Firefox ESR","not dead"],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"],ssr:["node 16"],node:["last 2 node major versions"]},s=o;
3
+ var 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 16"]},s=o;
4
4
 
5
5
  module.exports = s;
6
6
  //# sourceMappingURL=out.js.map
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/index.ts"],"names":["config","src_default"],"mappings":"AAAA,IAAMA,EAAS,CACX,WAAY,CAAC,OAAQ,kBAAmB,cAAe,UAAU,EACjE,eAAgB,CAAC,OAAQ,kBAAmB,aAAa,EACzD,eAAgB,CACZ,yBACA,kBACA,yBACA,oBACA,sBACA,iBACA,0BACA,mBACA,uBACA,eACJ,EACA,IAAK,CAAC,SAAS,EAEf,KAAM,CAAC,4BAA4B,CACvC,EAEOC,EAAQD","sourcesContent":["const config = {\n production: [\"> 1%\", \"last 2 versions\", \"Firefox ESR\", \"not dead\"],\n legacyBrowsers: [\"> 1%\", \"last 2 versions\", \"Firefox ESR\"],\n modernBrowsers: [\n \"last 2 Chrome versions\",\n \"not Chrome < 60\",\n \"last 2 Safari versions\",\n \"not Safari < 10.1\",\n \"last 2 iOS versions\",\n \"not iOS < 10.3\",\n \"last 2 Firefox versions\",\n \"not Firefox < 54\",\n \"last 2 Edge versions\",\n \"not Edge < 15\",\n ],\n ssr: [\"node 16\"],\n /** NOTE: Meaning LTS version. Any version above LTS is not considered as \"major release\", AFAIK. */\n node: [\"last 2 node major versions\"],\n};\n\nexport default config;\n"]}
1
+ {"version":3,"sources":["../src/index.ts"],"names":["config","src_default"],"mappings":"AAAA,IAAMA,EAAS,CACX,eAAgB,CAAC,OAAQ,kBAAmB,aAAa,EACzD,eAAgB,CACZ,yBACA,kBACA,yBACA,oBACA,sBACA,iBACA,0BACA,mBACA,uBACA,eACJ,EAEA,KAAM,CAAC,4BAA4B,EACnC,WAAY,CAAC,OAAQ,kBAAmB,cAAe,UAAU,EACjE,IAAK,CAAC,SAAS,CACnB,EAEOC,EAAQD","sourcesContent":["const config = {\n legacyBrowsers: [\"> 1%\", \"last 2 versions\", \"Firefox ESR\"],\n modernBrowsers: [\n \"last 2 Chrome versions\",\n \"not Chrome < 60\",\n \"last 2 Safari versions\",\n \"not Safari < 10.1\",\n \"last 2 iOS versions\",\n \"not iOS < 10.3\",\n \"last 2 Firefox versions\",\n \"not Firefox < 54\",\n \"last 2 Edge versions\",\n \"not Edge < 15\",\n ],\n /** NOTE: Meaning LTS version. Any version above LTS is not considered as \"major release\", AFAIK. */\n node: [\"last 2 node major versions\"],\n production: [\"> 1%\", \"last 2 versions\", \"Firefox ESR\", \"not dead\"],\n ssr: [\"node 16\"],\n};\n\nexport default config;\n"]}
package/dist/index.mjs CHANGED
@@ -1,4 +1,4 @@
1
- var o={production:["> 1%","last 2 versions","Firefox ESR","not dead"],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"],ssr:["node 16"],node:["last 2 node major versions"]},s=o;
1
+ var 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 16"]},s=o;
2
2
 
3
3
  export { s as default };
4
4
  //# sourceMappingURL=out.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/index.ts"],"names":["config","src_default"],"mappings":"AAAA,IAAMA,EAAS,CACX,WAAY,CAAC,OAAQ,kBAAmB,cAAe,UAAU,EACjE,eAAgB,CAAC,OAAQ,kBAAmB,aAAa,EACzD,eAAgB,CACZ,yBACA,kBACA,yBACA,oBACA,sBACA,iBACA,0BACA,mBACA,uBACA,eACJ,EACA,IAAK,CAAC,SAAS,EAEf,KAAM,CAAC,4BAA4B,CACvC,EAEOC,EAAQD","sourcesContent":["const config = {\n production: [\"> 1%\", \"last 2 versions\", \"Firefox ESR\", \"not dead\"],\n legacyBrowsers: [\"> 1%\", \"last 2 versions\", \"Firefox ESR\"],\n modernBrowsers: [\n \"last 2 Chrome versions\",\n \"not Chrome < 60\",\n \"last 2 Safari versions\",\n \"not Safari < 10.1\",\n \"last 2 iOS versions\",\n \"not iOS < 10.3\",\n \"last 2 Firefox versions\",\n \"not Firefox < 54\",\n \"last 2 Edge versions\",\n \"not Edge < 15\",\n ],\n ssr: [\"node 16\"],\n /** NOTE: Meaning LTS version. Any version above LTS is not considered as \"major release\", AFAIK. */\n node: [\"last 2 node major versions\"],\n};\n\nexport default config;\n"]}
1
+ {"version":3,"sources":["../src/index.ts"],"names":["config","src_default"],"mappings":"AAAA,IAAMA,EAAS,CACX,eAAgB,CAAC,OAAQ,kBAAmB,aAAa,EACzD,eAAgB,CACZ,yBACA,kBACA,yBACA,oBACA,sBACA,iBACA,0BACA,mBACA,uBACA,eACJ,EAEA,KAAM,CAAC,4BAA4B,EACnC,WAAY,CAAC,OAAQ,kBAAmB,cAAe,UAAU,EACjE,IAAK,CAAC,SAAS,CACnB,EAEOC,EAAQD","sourcesContent":["const config = {\n legacyBrowsers: [\"> 1%\", \"last 2 versions\", \"Firefox ESR\"],\n modernBrowsers: [\n \"last 2 Chrome versions\",\n \"not Chrome < 60\",\n \"last 2 Safari versions\",\n \"not Safari < 10.1\",\n \"last 2 iOS versions\",\n \"not iOS < 10.3\",\n \"last 2 Firefox versions\",\n \"not Firefox < 54\",\n \"last 2 Edge versions\",\n \"not Edge < 15\",\n ],\n /** NOTE: Meaning LTS version. Any version above LTS is not considered as \"major release\", AFAIK. */\n node: [\"last 2 node major versions\"],\n production: [\"> 1%\", \"last 2 versions\", \"Firefox ESR\", \"not dead\"],\n ssr: [\"node 16\"],\n};\n\nexport default config;\n"]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "browserslist-config-anolilab",
3
- "version": "4.1.2",
3
+ "version": "4.2.1",
4
4
  "description": "Shareable browserlist config for Anolilab projects.",
5
5
  "keywords": [
6
6
  "browserslist",
@@ -59,14 +59,14 @@
59
59
  "test:coverage": "vitest --config ./vitest.config.ts --run --coverage"
60
60
  },
61
61
  "devDependencies": {
62
- "@anolilab/semantic-release-preset": "4.0.3",
62
+ "@anolilab/semantic-release-preset": "5.0.1",
63
63
  "browserslist": "4.21.9",
64
- "caniuse-lite": "^1.0.30001509",
64
+ "caniuse-lite": "^1.0.30001512",
65
65
  "cross-env": "^7.0.3",
66
66
  "rimraf": "^5.0.1",
67
- "semantic-release": "^21.0.5",
67
+ "semantic-release": "^21.0.6",
68
68
  "tsup": "^7.1.0",
69
- "vitest": "^0.32.2"
69
+ "vitest": "^0.32.4"
70
70
  },
71
71
  "engines": {
72
72
  "node": ">=16"