@workleap/browserslist-config 2.0.4 → 2.1.2
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 +18 -0
- package/package.json +10 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @workleap/browserslist-config
|
|
2
2
|
|
|
3
|
+
## 2.1.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#300](https://github.com/workleap/wl-web-configs/pull/300) [`95ba69a`](https://github.com/workleap/wl-web-configs/commit/95ba69af8f342cfd5a69c4dd067b851f7a4817c3) Thanks [@patricklafrance](https://github.com/patricklafrance)! - Fixing deployment of previous version.
|
|
8
|
+
|
|
9
|
+
## 2.1.1
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [#298](https://github.com/workleap/wl-web-configs/pull/298) [`ec6e2bb`](https://github.com/workleap/wl-web-configs/commit/ec6e2bba95dcedad667afae6ba99ed7d6ce27a6c) Thanks [@patricklafrance](https://github.com/patricklafrance)! - Updated dependencies.
|
|
14
|
+
|
|
15
|
+
## 2.1.0
|
|
16
|
+
|
|
17
|
+
### Minor Changes
|
|
18
|
+
|
|
19
|
+
- [#290](https://github.com/workleap/wl-web-configs/pull/290) [`8f0a5a0`](https://github.com/workleap/wl-web-configs/commit/8f0a5a03f8c1a55f22c41b1850d7d20a036b259d) Thanks [@patricklafrance](https://github.com/patricklafrance)! - Updated dependencies.
|
|
20
|
+
|
|
3
21
|
## 2.0.4
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@workleap/browserslist-config",
|
|
3
3
|
"author": "Workleap",
|
|
4
4
|
"description": "Workleap recommended Browserslist configuration.",
|
|
5
|
-
"version": "2.
|
|
5
|
+
"version": "2.1.2",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
@@ -22,17 +22,19 @@
|
|
|
22
22
|
"files": [
|
|
23
23
|
"src",
|
|
24
24
|
"dist",
|
|
25
|
-
"CHANGELOG.md"
|
|
26
|
-
"README.md"
|
|
25
|
+
"CHANGELOG.md"
|
|
27
26
|
],
|
|
28
27
|
"devDependencies": {
|
|
29
|
-
"@
|
|
30
|
-
"eslint": "8.
|
|
31
|
-
"
|
|
32
|
-
"
|
|
28
|
+
"@eslint/js": "9.38.0",
|
|
29
|
+
"@typescript-eslint/parser": "8.46.2",
|
|
30
|
+
"eslint": "9.38.0",
|
|
31
|
+
"rimraf": "6.0.1",
|
|
32
|
+
"typescript": "5.9.3",
|
|
33
|
+
"typescript-eslint": "8.46.2",
|
|
34
|
+
"@workleap/eslint-configs": "0.0.2"
|
|
33
35
|
},
|
|
34
36
|
"scripts": {
|
|
35
|
-
"prebuild": "pnpm
|
|
37
|
+
"prebuild": "pnpm rimraf dist",
|
|
36
38
|
"build": "tsc --project tsconfig.build.json",
|
|
37
39
|
"eslint": "eslint . --max-warnings=-0 --cache --cache-location node_modules/.cache/eslint",
|
|
38
40
|
"typecheck": "tsc"
|