vite-plugin-wss-hmr 0.7.8 → 0.8.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.
Files changed (3) hide show
  1. package/index.cjs +1 -1
  2. package/index.js +1 -1
  3. package/package.json +2 -2
package/index.cjs CHANGED
@@ -74,7 +74,7 @@ async function createVitePlugin() {
74
74
  console.log(`[vite-plugin-wss-hmr] hmrServer working on wss://${host}:${port}${base}`);
75
75
  setTimeout(() => {
76
76
  console.warn(
77
- `[vite-plugin-wss-hmr] if you use this plugin for the first time, please visit https://${host}:${port}${base} , and add your browser(which used of dev) as trust`
77
+ `[vite-plugin-wss-hmr] if you use this plugin for the first time, please visit https://${host}:${port}${base} , and add your browser(which used of dev) as trust`,
78
78
  );
79
79
  }, 3000);
80
80
  }
package/index.js CHANGED
@@ -72,7 +72,7 @@ async function createVitePlugin() {
72
72
  console.log(`[vite-plugin-wss-hmr] hmrServer working on wss://${host}:${port}${base}`);
73
73
  setTimeout(() => {
74
74
  console.warn(
75
- `[vite-plugin-wss-hmr] if you use this plugin for the first time, please visit https://${host}:${port}${base} , and add your browser(which used of dev) as trust`
75
+ `[vite-plugin-wss-hmr] if you use this plugin for the first time, please visit https://${host}:${port}${base} , and add your browser(which used of dev) as trust`,
76
76
  );
77
77
  }, 3000);
78
78
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "vite-plugin-wss-hmr",
3
3
  "type": "module",
4
- "version": "0.7.8",
4
+ "version": "0.8.0",
5
5
  "description": "",
6
6
  "main": "index.js",
7
7
  "exports": {
@@ -21,6 +21,6 @@
21
21
  "license": "ISC",
22
22
  "devDependencies": {
23
23
  "rollup": "^2.79.1",
24
- "vite": "^5.0.10"
24
+ "vite": "^5.3.2"
25
25
  }
26
26
  }