@workleap/browserslist-config 1.1.0 → 1.2.0
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 +15 -0
- package/package.json +4 -15
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @workleap/browserslist-config
|
|
2
2
|
|
|
3
|
+
## 1.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#25](https://github.com/workleap/wl-web-configs/pull/25) [`26447ac`](https://github.com/workleap/wl-web-configs/commit/26447acc2cb2dca69667e171ab37bca330ecfde5) Thanks [@alexasselin008](https://github.com/alexasselin008)! - Update to repository setups:
|
|
8
|
+
- feat: #19 clean, test and lint:types scripts shouldn't be delegated to packages
|
|
9
|
+
- chore: #18 clean script != reset script
|
|
10
|
+
- feat: #17 tsup setup
|
|
11
|
+
|
|
12
|
+
## 1.1.1
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- [#14](https://github.com/workleap/wl-web-configs/pull/14) [`3da3332`](https://github.com/workleap/wl-web-configs/commit/3da33327fd24874b9f26568f54d4dad0941753c2) Thanks [@alexasselin008](https://github.com/alexasselin008)! - Update the package.json to update repository url
|
|
17
|
+
|
|
3
18
|
## 1.1.0
|
|
4
19
|
|
|
5
20
|
### Minor 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 config.",
|
|
5
|
-
"version": "1.
|
|
5
|
+
"version": "1.2.0",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
8
8
|
"workleap",
|
|
@@ -21,25 +21,14 @@
|
|
|
21
21
|
"README.md"
|
|
22
22
|
],
|
|
23
23
|
"devDependencies": {
|
|
24
|
-
"
|
|
24
|
+
"tsup": "6.7.0",
|
|
25
|
+
"@workleap/typescript-configs": "2.1.0"
|
|
25
26
|
},
|
|
26
27
|
"publishConfig": {
|
|
27
28
|
"access": "public",
|
|
28
29
|
"provenance": true
|
|
29
30
|
},
|
|
30
|
-
"tsup": {
|
|
31
|
-
"entry": [
|
|
32
|
-
"./index.ts"
|
|
33
|
-
],
|
|
34
|
-
"clean": true,
|
|
35
|
-
"declaration": true,
|
|
36
|
-
"format": [
|
|
37
|
-
"cjs"
|
|
38
|
-
]
|
|
39
|
-
},
|
|
40
31
|
"scripts": {
|
|
41
|
-
"build": "tsup"
|
|
42
|
-
"clean": "pnpm dlx rimraf dist node_modules",
|
|
43
|
-
"lint:types": "tsc --noEmit"
|
|
32
|
+
"build": "tsup"
|
|
44
33
|
}
|
|
45
34
|
}
|