@workleap/rsbuild-configs 1.1.0 → 1.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 +16 -4
- package/README.md +2 -2
- package/package.json +17 -22
package/CHANGELOG.md
CHANGED
|
@@ -1,25 +1,37 @@
|
|
|
1
1
|
# @workleap/rsbuild-configs
|
|
2
2
|
|
|
3
|
+
## 1.1.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#244](https://github.com/workleap/wl-web-configs/pull/244) [`038d794`](https://github.com/workleap/wl-web-configs/commit/038d794458289e344502a56fd563c71e8d6dd0f8) Thanks [@patricklafrance](https://github.com/patricklafrance)! - Updated dependencies
|
|
8
|
+
|
|
9
|
+
## 1.1.1
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [#242](https://github.com/workleap/wl-web-configs/pull/242) [`e165cb4`](https://github.com/workleap/wl-web-configs/commit/e165cb447e699e19f06d41532216e36c09d7b945) Thanks [@patricklafrance](https://github.com/patricklafrance)! - Updated dependencies.
|
|
14
|
+
|
|
3
15
|
## 1.1.0
|
|
4
16
|
|
|
5
17
|
### Minor Changes
|
|
6
18
|
|
|
7
|
-
- [#234](https://github.com/
|
|
19
|
+
- [#234](https://github.com/workleap/wl-web-configs/pull/234) [`ad94f27`](https://github.com/workleap/wl-web-configs/commit/ad94f2714d520af580f01dab3dc02b31b5857673) Thanks [@patricklafrance](https://github.com/patricklafrance)! - Added a new `writeToDisk` predefined option for the dev config.
|
|
8
20
|
|
|
9
21
|
## 1.0.2
|
|
10
22
|
|
|
11
23
|
### Patch Changes
|
|
12
24
|
|
|
13
|
-
- [#230](https://github.com/
|
|
25
|
+
- [#230](https://github.com/workleap/wl-web-configs/pull/230) [`0a4279c`](https://github.com/workleap/wl-web-configs/commit/0a4279c40b7c2ea76c7e1884a8e2fd744ca9b7c1) Thanks [@patricklafrance](https://github.com/patricklafrance)! - Packages now includes the source codes and sourcemap.
|
|
14
26
|
|
|
15
27
|
## 1.0.1
|
|
16
28
|
|
|
17
29
|
### Patch Changes
|
|
18
30
|
|
|
19
|
-
- [#221](https://github.com/
|
|
31
|
+
- [#221](https://github.com/workleap/wl-web-configs/pull/221) [`73204ed`](https://github.com/workleap/wl-web-configs/commit/73204eda439ba06f49f24db784f1834dade74b36) Thanks [@patricklafrance](https://github.com/patricklafrance)! - Export transformer typings for Rsbuild configs.
|
|
20
32
|
|
|
21
33
|
## 1.0.0
|
|
22
34
|
|
|
23
35
|
### Major Changes
|
|
24
36
|
|
|
25
|
-
- [#219](https://github.com/
|
|
37
|
+
- [#219](https://github.com/workleap/wl-web-configs/pull/219) [`c48e34f`](https://github.com/workleap/wl-web-configs/commit/c48e34f6cdb562fede7fc59b15fd5deba2de8b8d) Thanks [@patricklafrance](https://github.com/patricklafrance)! - The previous deployment should have been version 1.0.0 instead of 0.0.1.
|
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
## Usage
|
|
7
7
|
|
|
8
|
-
View the [user's documentation](https://
|
|
8
|
+
View the [user's documentation](https://workleap.github.io/wl-web-configs/).
|
|
9
9
|
|
|
10
10
|
## 🤝 Contributing
|
|
11
11
|
|
|
@@ -13,4 +13,4 @@ View the [contributor's documentation](../../CONTRIBUTING.md).
|
|
|
13
13
|
|
|
14
14
|
## License
|
|
15
15
|
|
|
16
|
-
Copyright © 2023, Workleap. This code is licensed under the Apache License, Version 2.0. You may obtain a copy of this license at https://github.com/
|
|
16
|
+
Copyright © 2023, Workleap. This code is licensed under the Apache License, Version 2.0. You may obtain a copy of this license at https://github.com/workleap/workleap-license/blob/master/LICENSE.
|
package/package.json
CHANGED
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
"name": "@workleap/rsbuild-configs",
|
|
3
3
|
"author": "Workleap",
|
|
4
4
|
"description": "Workleap recommended Rsbuild configurations.",
|
|
5
|
-
"version": "1.1.
|
|
5
|
+
"version": "1.1.2",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
9
|
-
"url": "git+https://github.com/
|
|
9
|
+
"url": "git+https://github.com/workleap/wl-web-configs.git",
|
|
10
10
|
"directory": "packages/rsbuild-configs"
|
|
11
11
|
},
|
|
12
12
|
"type": "module",
|
|
@@ -28,37 +28,32 @@
|
|
|
28
28
|
"README.md"
|
|
29
29
|
],
|
|
30
30
|
"peerDependencies": {
|
|
31
|
-
"@rsbuild/core": "
|
|
32
|
-
"@rspack/core": "
|
|
31
|
+
"@rsbuild/core": "^1.3.1",
|
|
32
|
+
"@rspack/core": "^1.3.0"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"@rsbuild/plugin-basic-ssl": "^1.1.1",
|
|
36
36
|
"@rsbuild/plugin-image-compress": "^1.1.0",
|
|
37
|
-
"@rsbuild/plugin-react": "^1.1.
|
|
38
|
-
"@rsbuild/plugin-svgr": "^1.0.
|
|
37
|
+
"@rsbuild/plugin-react": "^1.1.1",
|
|
38
|
+
"@rsbuild/plugin-svgr": "^1.0.7"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@rsbuild/core": "1.1
|
|
42
|
-
"@rslib/core": "0.
|
|
43
|
-
"@rspack/core": "1.
|
|
44
|
-
"@
|
|
45
|
-
"@
|
|
46
|
-
"@types/jest": "29.5.14",
|
|
47
|
-
"@types/node": "22.10.7",
|
|
48
|
-
"@typescript-eslint/parser": "8.20.0",
|
|
41
|
+
"@rsbuild/core": "1.3.1",
|
|
42
|
+
"@rslib/core": "0.6.1",
|
|
43
|
+
"@rspack/core": "1.3.0",
|
|
44
|
+
"@types/node": "22.13.14",
|
|
45
|
+
"@typescript-eslint/parser": "8.29.0",
|
|
49
46
|
"eslint": "8.57.0",
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
"@workleap/
|
|
54
|
-
"@workleap/
|
|
55
|
-
"@workleap/typescript-configs": "3.0.2",
|
|
56
|
-
"@workleap/rslib-configs": "1.0.2"
|
|
47
|
+
"typescript": "5.8.2",
|
|
48
|
+
"vitest": "3.1.1",
|
|
49
|
+
"@workleap/eslint-plugin": "3.3.2",
|
|
50
|
+
"@workleap/rslib-configs": "1.0.4",
|
|
51
|
+
"@workleap/typescript-configs": "3.0.3"
|
|
57
52
|
},
|
|
58
53
|
"scripts": {
|
|
59
54
|
"build": "rslib build -c rslib.config.ts",
|
|
60
55
|
"eslint": "eslint . --max-warnings=-0 --cache --cache-location node_modules/.cache/eslint",
|
|
61
56
|
"typecheck": "tsc",
|
|
62
|
-
"test": "
|
|
57
|
+
"test": "vitest --config vitest.config.ts --no-watch"
|
|
63
58
|
}
|
|
64
59
|
}
|