@rspack/dev-server 0.0.0-canary-a4f94f416 → 0.0.0-canary-d0a48a9b4

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +5 -5
  2. package/package.json +8 -8
package/CHANGELOG.md CHANGED
@@ -1,14 +1,14 @@
1
1
  # rspack-dev-server
2
2
 
3
- ## 0.0.0-canary-a4f94f416
3
+ ## 0.0.0-canary-d0a48a9b4
4
4
 
5
5
  ### Patch Changes
6
6
 
7
7
  - Updated dependencies [95c3593b6]
8
- - @rspack/core@0.0.0-canary-a4f94f416
9
- - @rspack/dev-middleware@0.0.0-canary-a4f94f416
10
- - @rspack/dev-server@0.0.0-canary-a4f94f416
11
- - @rspack/dev-client@0.0.0-canary-a4f94f416
8
+ - @rspack/core@0.0.0-canary-d0a48a9b4
9
+ - @rspack/dev-middleware@0.0.0-canary-d0a48a9b4
10
+ - @rspack/dev-server@0.0.0-canary-d0a48a9b4
11
+ - @rspack/dev-client@0.0.0-canary-d0a48a9b4
12
12
 
13
13
  ## 0.0.26
14
14
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rspack/dev-server",
3
- "version": "0.0.0-canary-a4f94f416",
3
+ "version": "0.0.0-canary-d0a48a9b4",
4
4
  "license": "MIT",
5
5
  "description": "Development server for rspack",
6
6
  "main": "./dist/index.js",
@@ -16,7 +16,7 @@
16
16
  "@types/connect-history-api-fallback": "1.3.5",
17
17
  "fs-extra": "11.1.0",
18
18
  "puppeteer": "19.4.0",
19
- "@rspack/core": "0.0.0-canary-a4f94f416"
19
+ "@rspack/core": "0.0.0-canary-d0a48a9b4"
20
20
  },
21
21
  "dependencies": {
22
22
  "express": "4.18.1",
@@ -25,16 +25,16 @@
25
25
  "webpack-dev-server": "4.11.1",
26
26
  "connect-history-api-fallback": "2.0.0",
27
27
  "http-proxy-middleware": "2.0.6",
28
- "@rspack/dev-middleware": "0.0.0-canary-a4f94f416",
29
- "@rspack/dev-client": "0.0.0-canary-a4f94f416",
30
- "@rspack/dev-server": "0.0.0-canary-a4f94f416"
28
+ "@rspack/dev-middleware": "0.0.0-canary-d0a48a9b4",
29
+ "@rspack/dev-client": "0.0.0-canary-d0a48a9b4",
30
+ "@rspack/dev-server": "0.0.0-canary-d0a48a9b4"
31
31
  },
32
32
  "peerDependencies": {
33
- "@rspack/core": "0.0.0-canary-a4f94f416"
33
+ "@rspack/core": "0.0.0-canary-d0a48a9b4"
34
34
  },
35
35
  "scripts": {
36
- "build": "rm -rf dist/ && tsc",
36
+ "build": "rimraf dist/ && tsc",
37
37
  "dev": "tsc -w",
38
- "test": "rm -rf .test-temp && jest --verbose"
38
+ "test": "rimraf .test-temp && jest --verbose"
39
39
  }
40
40
  }