@proteus-vue/hmr 0.1.1-beta.0 → 0.1.1-beta.3

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 (1) hide show
  1. package/package.json +3 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@proteus-vue/hmr",
3
- "version": "0.1.1-beta.0",
3
+ "version": "0.1.1-beta.3",
4
4
  "description": "Proteus HMR 运行时(devtools-plus G-34 M1):HMR payload 协议 + 状态保留 + Vue import.meta.hot 适配 + WebSocket 客户端 + 安全 reload——开发期工具链,不随业务产物发布",
5
5
  "type": "module",
6
6
  "license": "Apache-2.0",
@@ -34,13 +34,13 @@
34
34
  "README.md"
35
35
  ],
36
36
  "dependencies": {
37
- "@proteus-vue/runtime": "0.2.0-beta.1",
37
+ "@proteus-vue/runtime": "0.2.0-beta.4",
38
38
  "ws": "^8.18.0"
39
39
  },
40
40
  "devDependencies": {
41
41
  "@types/node": "^20.0.0",
42
42
  "@types/ws": "^8.18.0",
43
- "@proteus-vue/types": "0.2.0-beta.1"
43
+ "@proteus-vue/types": "0.2.0-beta.2"
44
44
  },
45
45
  "scripts": {
46
46
  "build": "tsc -p tsconfig.build.json --emitDeclarationOnly && esbuild src/index.ts --bundle --format=esm --platform=node --outfile=dist/index.js && esbuild src/dev-server/index.ts --bundle --format=esm --platform=node --outfile=dist/dev-server/index.js --external:ws && esbuild src/cdp/index.ts --bundle --format=esm --platform=node --outfile=dist/cdp/index.js --external:@proteus-vue/runtime --external:ws && esbuild src/style-gate/index.ts --bundle --format=esm --platform=node --outfile=dist/style-gate/index.js --external:@proteus-vue/runtime"