rsbuild-pipe 1.3.0 → 1.3.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/README.md CHANGED
@@ -3,6 +3,14 @@
3
3
  rsbuild开发和打包管道
4
4
 
5
5
  ## Change Log
6
+ ### v1.3.2
7
+ ```
8
+ 修复rsbuild中的废弃警告
9
+ ```
10
+ ### v1.3.1
11
+ ```
12
+ rsbuild依赖升级到1.3.22
13
+ ```
6
14
  ### v1.3.0
7
15
  ```
8
16
  rsbuild依赖升级到1.3.7
@@ -64,7 +64,9 @@ export const getBaseConfig = (params: GetBaseConfigParams = {}):RsbuildConfig =>
64
64
  source: {
65
65
  entry: {
66
66
  index: './src',
67
- },
67
+ }
68
+ },
69
+ resolve:{
68
70
  alias: {
69
71
  '@/': './src/',
70
72
  'vendor/': '../vendor/',
package/package.json CHANGED
@@ -1,26 +1,26 @@
1
1
  {
2
2
  "name": "rsbuild-pipe",
3
- "version": "1.3.0",
3
+ "version": "1.3.2",
4
4
  "author": "chencheng <daniel_txy@163.com>",
5
5
  "description": "rsbuild pipe",
6
6
  "main": "index",
7
7
  "dependencies": {
8
- "@rsbuild/core": "1.3.7",
8
+ "@rsbuild/core": "1.3.22",
9
9
  "@rsbuild/plugin-babel": "1.0.5",
10
10
  "@rsbuild/plugin-basic-ssl": "1.1.1",
11
- "@rsbuild/plugin-less": "1.2.2",
11
+ "@rsbuild/plugin-less": "1.2.4",
12
12
  "@rsbuild/plugin-node-polyfill": "1.3.0",
13
- "@rsbuild/plugin-react": "1.2.0",
14
- "@rsbuild/plugin-sass": "1.3.1",
13
+ "@rsbuild/plugin-react": "1.3.2",
14
+ "@rsbuild/plugin-sass": "1.3.2",
15
15
  "@rsbuild/plugin-svgr": "1.2.0",
16
- "@rsbuild/plugin-type-check": "1.2.1",
16
+ "@rsbuild/plugin-type-check": "1.2.2",
17
17
  "@rsbuild/plugin-source-build":"1.0.2",
18
- "@types/node": "22.14.1",
18
+ "@types/node": "22.15.30",
19
19
  "deepmerge": "4.3.1",
20
- "sass": "1.86.3"
20
+ "sass": "1.89.1"
21
21
  },
22
22
  "peerDependencies": {
23
- "@rsbuild/core": "1.3.7"
23
+ "@rsbuild/core": "1.3.22"
24
24
  },
25
25
  "repository": {
26
26
  "type": "git",
@@ -32,6 +32,6 @@
32
32
  },
33
33
  "homepage": "https://gitee.com/cloud_soldier/rsbuild-pipe#readme",
34
34
  "devDependencies": {
35
- "typescript": "5.6.3"
35
+ "typescript": "5.8.3"
36
36
  }
37
37
  }